mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 12:36:57 +00:00
28 lines
584 B
TypeScript
28 lines
584 B
TypeScript
import { Analytics } from "@vercel/analytics/react";
|
|
|
|
import "./globals.css";
|
|
import { Inter } from "next/font/google";
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
export const metadata = {
|
|
title: "Echecs France",
|
|
description: "Trouvez Vos Tournois d'Echecs en France Sur Une Carte",
|
|
keywords: "echecs, France, tournoi, tournois, FFE",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={inter.className}>
|
|
{children}
|
|
<Analytics />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|