mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
27 lines
577 B
TypeScript
27 lines
577 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: "Generated by create next app", // TODO give the website a description + maybe keywords if they go here
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={inter.className}>
|
|
{children}
|
|
<Analytics />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|