import { createRoot } from 'react-dom/client'
import { HashRouter, Navigate, Route, Routes } from 'react-router-dom'
import '@fontsource-variable/inter'
import '@fontsource-variable/jetbrains-mono'
import '../../../packages/ui/src/tokens.css'
import './app.css'
import { initTheme, PageHeader } from '@sims/ui'
import { Layout } from './Layout'
import { Login } from './Login'
/** Placeholder pages — Task 16 replaces these with the five real pages. */
function Placeholder(props: { title: string }) {
return
}
function App() {
return (
} />
}>
} />
} />
} />
} />
} />
} />
)
}
initTheme()
createRoot(document.getElementById('root')!).render()