Skip to main content

NextJS project SEO

SupaLaunch comes with SEO features out of the box.

Meta tags

Metadata for the project is defined in @/app/layout.tsx. You can change the default values there.

const projectTitle = 'SupaLaunch Demo Project'
const projectDescription = 'Demo project for SupaLaunch — Supabase NextJS Starter Kit'
const projectUrl = 'https://demo.supalaunch.com'
const projectImage = '/images/hero-img.png'
const twitterHandle = '@your_twitter_handle'

If you want to change the metadata for a specific page, you can do it route folder. For example, if you want to change the metadata for the /about page, you can do it in @/app/about/layout.tsx.

Please follow the NextJS documentation for more information about metadata.

Sitemap

Sitemap is generated automatically. You can find it at @/app/sitemap.ts. In order to add new pages to the sitemap, edit the urls array.

const urls = [
'/',
]

Sitemap will be updated automatically when you deploy your project.