Updates to account, ui, etc

This commit is contained in:
2025-05-13 22:57:29 -04:00
parent a273d4134b
commit abfa6b534c
38 changed files with 781 additions and 215 deletions

View File

@@ -8,6 +8,7 @@ import { UserProvider } from '@components/context/UserProvider.tsx';
import { BrowserRouter, Route, Routes } from 'react-router';
import { Profile } from '@components/Profile.tsx';
import { Administration } from '@components/Administration.tsx';
import { NotFound } from '@components/NotFound';
const theme = createTheme({
fontFamily: 'Inter, sans-serif'
@@ -23,6 +24,7 @@ createRoot(document.getElementById('root')!).render(
<Route path='/' element={<App />} />
<Route path='/profile' element={<Profile />} />
<Route path='/administration' element={<Administration />} />
<Route path='*' element={<NotFound />} />
</Routes>
</UserProvider>
</MantineProvider>