feat : mui & state refacto

This commit is contained in:
GuillaumeSD
2024-02-20 05:08:27 +01:00
parent 70518a8bb8
commit 4502651492
31 changed files with 1481 additions and 800 deletions

View File

@@ -1,7 +1,12 @@
import "@fontsource/roboto/300.css";
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 "../../styles/global.css";
import "../../styles/index.css";
// import "../../styles/global.css";
// import "../../styles/index.css";
import Layout from "@/sections/layout";
export default function MyApp({ Component, pageProps }: AppProps) {
return (
@@ -9,7 +14,9 @@ export default function MyApp({ Component, pageProps }: AppProps) {
<Head>
<title>Free Chess</title>
</Head>
<Component {...pageProps} />
<Layout>
<Component {...pageProps} />
</Layout>
</>
);
}