Skip to content

Commit 77614a1

Browse files
committed
Metadata
1 parent f84236b commit 77614a1

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

src/app/layout.tsx

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,24 @@ const baiJamjuree = Bai_Jamjuree({
1414
});
1515

1616
export const metadata: Metadata = {
17-
title: 'Create Next App',
18-
description: 'Generated by create next app',
17+
title: 'Platform',
18+
icons: ['favicon-32x32.png', 'favicon-16x16.png', 'logoIcon.svg'],
19+
manifest: 'site.webmanifest',
20+
description: 'Platform.',
21+
openGraph: {
22+
title: 'Platform',
23+
description: 'Platform.',
24+
images: ['https://platform.utdnebula.com/logoIcon.png'],
25+
type: 'website',
26+
},
27+
twitter: {
28+
card: 'summary',
29+
site: 'platform.utdnebula.com',
30+
},
31+
};
32+
export const viewport = {
33+
//copied from globals.css
34+
themeColor: '#573DFF',
1935
};
2036

2137
export default function RootLayout({
@@ -25,7 +41,9 @@ export default function RootLayout({
2541
}>) {
2642
return (
2743
<html lang="en">
28-
<body className={`${inter.variable} ${baiJamjuree.variable} antialiased`}>{children}</body>
44+
<body className={`${inter.variable} font-main ${baiJamjuree.variable} antialiased`}>
45+
{children}
46+
</body>
2947
</html>
3048
);
3149
}

0 commit comments

Comments
 (0)