Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 the tailwind.config.js to include the selected urls.

#### Example

/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
images: {
domains: ['images.unsplash.com'],
},
}