2025-06-14 11:05:38 +03:00
|
|
|
<script lang="ts">
|
|
|
|
|
import '../app.css';
|
2025-06-14 11:13:40 +03:00
|
|
|
import Header from './header.svelte';
|
2025-06-14 11:05:38 +03:00
|
|
|
|
|
|
|
|
let { children } = $props();
|
|
|
|
|
</script>
|
|
|
|
|
|
2025-06-14 11:13:40 +03:00
|
|
|
<Header />
|
|
|
|
|
|
2025-06-17 17:01:13 +02:00
|
|
|
<main>
|
2025-06-14 11:05:38 +03:00
|
|
|
{@render children()}
|
2025-06-17 17:01:13 +02:00
|
|
|
</main>
|
2025-06-14 16:26:40 +03:00
|
|
|
|
2025-06-17 17:01:13 +02:00
|
|
|
<footer class="container max-w-screen mx-0 w-full bg-white dark:bg-gray-900 mt-2 py-6 text-sm text-center text-gray-500">
|
2025-06-14 16:26:40 +03:00
|
|
|
© 2024-2025 <a href="https://github.com/eliandoran" class="text-blue-500 hover:underline">Elian Doran</a> and the <a href="https://github.com/TriliumNext/Notes/graphs/contributors" class="text-blue-500 hover:underline">team</a>. <br/> © 2017-2024 <a href="https://github.com/zadam" class="text-blue-500 hover:underline">Adam Zivner</a>.
|
2025-06-17 17:01:13 +02:00
|
|
|
</footer>
|