Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cal-dev-lab/image-gallery-nextjs
An image gallery that fetches data from a database, created with NextJS, Supabase and TailwindCSS
https://github.com/cal-dev-lab/image-gallery-nextjs
nextjs supabase tailwind vercel
Last synced: 30 days ago
JSON representation
An image gallery that fetches data from a database, created with NextJS, Supabase and TailwindCSS
- Host: GitHub
- URL: https://github.com/cal-dev-lab/image-gallery-nextjs
- Owner: cal-dev-lab
- Created: 2022-07-02T15:57:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-09T21:12:30.000Z (over 2 years ago)
- Last Synced: 2024-12-11T08:33:47.663Z (about 1 month ago)
- Topics: nextjs, supabase, tailwind, vercel
- Language: TypeScript
- Homepage: https://image-gallery-nextjs-delta.vercel.app
- Size: 257 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Data fetched from here
https://app.supabase.com/project/ugfrwweooyvcxovfxmmy/editor/17584### Using different image providers
When using images from a third party host, remember to update thetailwind.config.js
to include the selected urls.#### Example
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
images: {
domains: ['images.unsplash.com'],
},
}