feat(infrastructure): add frontend, deploy to cloudflare

This commit is contained in:
2025-10-06 18:05:32 +02:00
parent 37f4d44caf
commit 9c4144f5c4
19 changed files with 4007 additions and 5 deletions

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>,
)