forked from Bitcoindefi/OpenAO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.tsx
More file actions
79 lines (75 loc) · 1.84 KB
/
Copy pathlayout.tsx
File metadata and controls
79 lines (75 loc) · 1.84 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import AppChrome from "@/components/AppChrome";
import {
buildPageMetadata,
siteDescription,
siteTitle,
siteUrl,
} from "@/lib/seo";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
...buildPageMetadata({
title: siteTitle,
description: siteDescription,
path: "/",
imagePath: "/opengraph-image",
twitterImagePath: "/twitter-image",
}),
metadataBase: new URL(siteUrl),
applicationName: "AOWeb",
title: {
default: siteTitle,
template: "%s | AOWeb",
},
description: siteDescription,
authors: [{ name: "Damian Catanzaro" }],
creator: "Damian Catanzaro",
publisher: "AOWeb",
category: "games",
formatDetection: {
email: false,
address: false,
telephone: false,
},
icons: {
icon: "/favicon.ico",
shortcut: "/favicon.ico",
apple: "/static/imgs/logo-aoweb.png",
},
manifest: "/manifest.webmanifest",
robots: {
index: true,
follow: true,
googleBot: {
index: true,
follow: true,
"max-image-preview": "large",
"max-snippet": -1,
"max-video-preview": -1,
},
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="es-AR">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<AppChrome>{children}</AppChrome>
</body>
</html>
);
}