Refactor code structure for improved readability and maintainability

This commit is contained in:
2025-09-27 13:05:32 +02:00
commit f9f0651628
47 changed files with 16493 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import '@mantine/core/styles.css';
import { MantineProvider } from '@mantine/core';
import { Router } from './Router';
import { theme } from './theme';
export default function App() {
return (
<MantineProvider theme={theme}>
<Router />
</MantineProvider>
);
}