feat : add custom pages title

This commit is contained in:
GuillaumeSD
2025-01-01 21:23:13 +01:00
parent be4456825c
commit abebfae43a
6 changed files with 24 additions and 12 deletions

View File

@@ -3,18 +3,12 @@ import "@fontsource/roboto/400.css";
import "@fontsource/roboto/500.css";
import "@fontsource/roboto/700.css";
import { AppProps } from "next/app";
import Head from "next/head";
import Layout from "@/sections/layout";
export default function MyApp({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<title>Free Chess</title>
</Head>
<Layout>
<Component {...pageProps} />
</Layout>
</>
<Layout>
<Component {...pageProps} />
</Layout>
);
}