55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
import type { Metadata } from "next";
|
|
import type { ReactNode } from "react";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
default: "hidden11",
|
|
template: "%s | hidden11",
|
|
},
|
|
description: "Daily football lineup puzzle with sharper clues, harder challenges and shareable results.",
|
|
metadataBase: new URL("https://hidden11.app"),
|
|
applicationName: "hidden11",
|
|
alternates: {
|
|
canonical: "https://hidden11.app",
|
|
},
|
|
keywords: ["football puzzle", "soccer puzzle", "daily game", "lineup puzzle", "hidden11"],
|
|
icons: {
|
|
icon: "/favicon.svg",
|
|
},
|
|
openGraph: {
|
|
title: "hidden11",
|
|
description: "Beat Easy, Medium and Hard in the daily football lineup puzzle and share the result.",
|
|
url: "https://hidden11.app",
|
|
siteName: "hidden11",
|
|
locale: "en_US",
|
|
images: [
|
|
{
|
|
url: "https://hidden11.app/og-image.png",
|
|
width: 1200,
|
|
height: 630,
|
|
alt: "hidden11 daily football puzzle",
|
|
},
|
|
],
|
|
type: "website",
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "hidden11",
|
|
description: "Beat Easy, Medium and Hard in the daily football lineup puzzle and share the result.",
|
|
images: ["https://hidden11.app/og-image.png"],
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
);
|
|
}
|