frontend redesign

This commit is contained in:
ngn
2025-01-07 00:13:11 +03:00
parent 337e56de78
commit fc11748e57
37 changed files with 1545 additions and 900 deletions

View File

@ -1,12 +1,27 @@
<script>
import Navbar from "../lib/navbar.svelte";
import Navbar from "$lib/navbar.svelte";
import Footer from "$lib/footer.svelte";
</script>
<main>
<Navbar />
<slot></slot>
<div class="content">
<slot></slot>
</div>
<Footer />
</main>
<style>
@import "../../static/global.css";
main {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.content {
background: var(--black-1);
flex-grow: 1;
}
</style>