feat: add frontend entry point, theme, and router

This commit is contained in:
2026-02-28 20:04:33 +01:00
parent 1afc95fe8b
commit b5c941c159
3 changed files with 52 additions and 0 deletions

17
frontend/src/theme.ts Normal file
View File

@@ -0,0 +1,17 @@
import { createTheme } from '@mui/material/styles'
export const theme = createTheme({
palette: {
mode: 'light',
primary: { main: '#3b82f6' },
background: { default: '#f5f7fa', paper: '#ffffff' },
},
components: {
MuiAppBar: { styleOverrides: { root: { backgroundColor: '#1a1f2e' } } },
MuiDrawer: {
styleOverrides: {
paper: { backgroundColor: '#1a1f2e', color: '#e2e8f0', borderRight: 'none' },
},
},
},
})