2025-12-30 18:57:58 +03:00
|
|
|
<script lang="ts">
|
2026-01-02 11:11:04 +03:00
|
|
|
import favicon from '$shared/assets/favicon.svg';
|
2025-12-30 19:38:20 +03:00
|
|
|
import './app.css';
|
2025-12-30 18:57:58 +03:00
|
|
|
import Page from './routes/Page.svelte';
|
|
|
|
|
</script>
|
|
|
|
|
|
2025-12-30 19:38:20 +03:00
|
|
|
<svelte:head>
|
|
|
|
|
<link rel="icon" href={favicon} />
|
|
|
|
|
</svelte:head>
|
2025-12-30 18:57:58 +03:00
|
|
|
|
|
|
|
|
<div id="app-root">
|
|
|
|
|
<Page />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<style>
|
2026-01-02 11:11:04 +03:00
|
|
|
#app-root {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
}
|
2025-12-30 18:57:58 +03:00
|
|
|
</style>
|