Site config
Define key details about your website or application.
site config preview
1// /app/layout.tsx2import type { Metadata } from "next"34export const metadata: Metadata = {5 title: {6 default: "",7 template: `%s - `,8 },9 description: "",10 keywords: [1112 ],13 // ... (other properties)14 themeColor: [15 { media: "(prefers-color-scheme: light)", color: "white" },16 { media: "(prefers-color-scheme: dark)", color: "black" },17 ],18 openGraph: {19 // ... (other properties)20 url: "",21 title: "",22 description: "",23 siteName: "",24 },25 twitter: {26 title: "",27 description: "",28 },29};30