Working on session validation

This commit is contained in:
2025-04-11 09:53:05 -04:00
parent 56ac66e9b1
commit 98887d7fef
24 changed files with 724 additions and 132 deletions

View File

@@ -4,21 +4,15 @@ import './index.css';
import App from './App.tsx';
import { createTheme, MantineProvider } from '@mantine/core';
import { Notifications } from '@mantine/notifications';
import {} from '@mantine/core';
const theme = createTheme({
fontFamily: 'Inter, sans-serif'
});
export const metadata = {
title: 'Aviation',
description: ''
};
createRoot(document.getElementById('root')!).render(
<StrictMode>
<MantineProvider theme={theme} defaultColorScheme={'dark'}>
<Notifications />
<Notifications zIndex={2000} />
<App />
</MantineProvider>
</StrictMode>