Overhaul refactor. Still things in progress

This commit is contained in:
2025-04-05 22:42:13 -04:00
parent 310d1eaad8
commit 769762dfa7
133 changed files with 119890 additions and 8784 deletions

25
ui/src/main.tsx Normal file
View File

@@ -0,0 +1,25 @@
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
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 Weather',
description: ''
};
createRoot(document.getElementById('root')!).render(
<StrictMode>
<MantineProvider theme={theme} defaultColorScheme={'dark'}>
<Notifications />
<App />
</MantineProvider>
</StrictMode>
);