forked from sing1ee/deepseekCoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.tsx
47 lines (44 loc) · 972 Bytes
/
layout.tsx
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import type { Metadata } from "next";
import "./globals.css";
let title = "Deepseek Coder – AI Code Generator";
let description = "Generate your next app with Deepseek";
let url = "https://www.deepseek.com/";
let ogimage = "/images/og-image.svg";
let sitename = "deepseek.com";
export const metadata: Metadata = {
metadataBase: new URL(url),
title,
description,
icons: {
icon: [
{ url: '/favicon.svg', type: 'image/svg+xml' },
{ url: '/favicon.svg', type: 'image/svg+xml', sizes: '32x32' }
],
},
openGraph: {
images: [ogimage],
title,
description,
url: url,
siteName: sitename,
locale: "en_US",
type: "website",
},
twitter: {
card: "summary_large_image",
images: [ogimage],
title,
description,
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className="h-full">
{children}
</html>
);
}