refactor(frontend): changes to no longer use server side and only static files

This commit is contained in:
2025-07-19 11:38:11 -05:00
parent f41a1b3363
commit 39d23f4a8a
24 changed files with 1637 additions and 8625 deletions

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

@@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)