Site config

Define key details about your website or application.

This is the title that will be displayed on your website or application.

This description summarizes the content or purpose of your website.

These keywords help improve the SEO of your website. Separate them with commas, or hit the Enter key.

This is the full URL where your website or application will be hosted.

site config preview
1// /app/layout.tsx
2import type { Metadata } from "next"
3
4export const metadata: Metadata = {
5 title: {
6 default: "",
7 template: `%s - `,
8 },
9 description: "",
10 keywords: [
11
12 ],
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