mirror of
https://github.com/Lapikud/lapikud.github.io.git
synced 2026-08-08 16:29:14 +00:00
21 lines
360 B
Svelte
21 lines
360 B
Svelte
<script>
|
|
import {
|
|
Section,
|
|
} from "$components";
|
|
import { onDestroy } from "svelte";
|
|
import { createPageTextStore } from "$lib";
|
|
|
|
const text = createPageTextStore("AboutUs");
|
|
|
|
onDestroy(() => {
|
|
text.destroy();
|
|
});
|
|
|
|
</script>
|
|
|
|
<div class="safe-area-navbar">
|
|
<Section>
|
|
<p>In development...</p>
|
|
<p>Põhikiri siia?</p>
|
|
</Section>
|
|
</div> |