2021-12-30 22:40:57 +00:00
|
|
|
// Uncomment when debugging and using Preact's DevTools WebExtension.
|
|
|
|
// import 'preact/debug';
|
|
|
|
|
2022-01-01 14:27:01 +00:00
|
|
|
import '@fontsource/inter/latin.css';
|
|
|
|
|
2021-12-30 22:40:57 +00:00
|
|
|
import {html, render} from 'htm/preact';
|
|
|
|
import {Router} from 'preact-router';
|
|
|
|
|
|
|
|
import HomePage from './pages/home.js';
|
|
|
|
import NotFoundPage from './pages/not-found.js';
|
|
|
|
import ReleasePage from './pages/release.js';
|
|
|
|
|
|
|
|
render(
|
|
|
|
html`
|
|
|
|
<${Router}>
|
|
|
|
<${HomePage} path="/" />
|
|
|
|
<${ReleasePage} path="/release/:mbid" />
|
|
|
|
<${NotFoundPage} default />
|
|
|
|
<//>
|
|
|
|
`,
|
|
|
|
document.body,
|
|
|
|
);
|