feat : add games database

This commit is contained in:
GuillaumeSD
2024-02-22 00:26:07 +01:00
parent 4502651492
commit 2a74b62bae
16 changed files with 450 additions and 7 deletions

View File

@@ -15,14 +15,19 @@ export default function Layout({ children }: PropsWithChildren) {
error: {
main: red[400],
},
primary: {
main: "#5d9948",
},
secondary: {
main: useDarkMode ? "#424242" : "#90caf9",
main: useDarkMode ? "#424242" : "#ffffff",
},
},
}),
[useDarkMode]
);
if (useDarkMode === null) return null;
return (
<ThemeProvider theme={theme}>
<CssBaseline />