···11-<img src="meta/logo.png" alt="The Bluroma logo, containing three rectangles with one rounded corner each shaped to look like an uppercase B and the Bluroma name written in the Convection font beside it." width="200">
11+<img src="static/logo.png" alt="The Bluroma logo, containing three rectangles with one rounded corner each shaped to look like an uppercase B and the Bluroma name written in the Convection font beside it." width="200">
2233## About
44
···11/* @refresh reload */
22-import { render } from 'solid-js/web';
33-import 'solid-devtools';
22+import { render } from "solid-js/web";
33+import "solid-devtools";
44+import { Route, Router } from "@solidjs/router";
4555-import App from './App';
66+import Login from "./routes/login";
6777-const root = document.getElementById('root');
88+const root = document.getElementById("root");
89910if (import.meta.env.DEV && !(root instanceof HTMLElement)) {
1011 throw new Error(
1111- 'Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?',
1212+ "Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?",
1213 );
1314}
14151515-render(() => <App />, root!);
1616+render(
1717+ () => (
1818+ <Router root={Login}>
1919+ <Route path="/" component={Login} />
2020+ </Router>
2121+ ),
2222+ root!,
2323+);