forked from shuding/nextra-docs-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
seo.config.ts
31 lines (28 loc) · 887 Bytes
/
seo.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import type { Metadata } from "next";
const defineMetadata = <T extends Metadata>(metadata: T) => metadata;
const seoConfig = defineMetadata({
metadataBase: new URL("https://panda-css.com"),
title: {
template: "%s - Panda CSS",
default:
"Panda CSS - Build modern websites using build time and type-safe CSS-in-JS",
},
description: "Build modern websites using build time and type-safe CSS-in-JS",
themeColor: "#F6E458",
openGraph: {
images: "/og-image.png",
url: "https://panda-css.com",
},
manifest: "/site.webmanifest",
icons: [
{ rel: "icon", url: "/favicon.ico" },
{ rel: "apple-touch-icon", url: "/apple-touch-icon.png" },
{ rel: "mask-icon", url: "/favicon.ico" },
{ rel: "image/x-icon", url: "/favicon.ico" },
],
twitter: {
site: "@panda__css",
creator: "@thesegunadebayo",
},
});
export default seoConfig;