Initial commit

This commit is contained in:
2026-02-21 09:44:18 -03:00
commit 5dfc2cbd85
65 changed files with 11989 additions and 0 deletions

18
frontend/src/main.tsx Normal file
View File

@@ -0,0 +1,18 @@
/**
* Frontend application bootstrap for React rendering.
*/
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';
import './design-foundation.css';
import './styles.css';
/**
* Mounts the root React application into the document.
*/
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
);