fix(website): script errors due to double body

This commit is contained in:
Elian Doran 2025-06-17 22:08:34 +03:00
parent b9daca5b9c
commit 330932adde
No known key found for this signature in database
2 changed files with 1 additions and 5 deletions

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<body data-sveltekit-preload-data="hover" class="dark:bg-black dark:text-white">
%sveltekit.body%
</body>
</html>

View File

@ -5,8 +5,6 @@
let { children } = $props();
</script>
<body class="dark:bg-black dark:text-white">
<Header />
<main>
@ -16,5 +14,3 @@
<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">
&copy; 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/> &copy; 2017-2024 <a href="https://github.com/zadam" class="text-blue-500 hover:underline">Adam Zivner</a>.
</footer>
</body>