46 lines
1012 B
TypeScript
46 lines
1012 B
TypeScript
import type { Metadata } from "next";
|
|
import type { ReactNode } from "react";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "hidden11",
|
|
description: "Daily football lineup puzzle",
|
|
metadataBase: new URL("https://hidden11.app"),
|
|
icons: {
|
|
icon: "/favicon.svg",
|
|
},
|
|
openGraph: {
|
|
title: "hidden11",
|
|
description: "Daily football lineup puzzle. Find the hidden five-player XI.",
|
|
url: "https://hidden11.app",
|
|
siteName: "hidden11",
|
|
images: [
|
|
{
|
|
url: "/og.svg",
|
|
width: 1200,
|
|
height: 630,
|
|
alt: "hidden11 daily football puzzle",
|
|
},
|
|
],
|
|
type: "website",
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "hidden11",
|
|
description: "Daily football lineup puzzle. Find the hidden five-player XI.",
|
|
images: ["/og.svg"],
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|