Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 330932a

Browse files
committed
fix(website): script errors due to double body
1 parent b9daca5 commit 330932a

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

apps/website/src/app.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
%sveltekit.head%
88
</head>
9-
<body data-sveltekit-preload-data="hover">
9+
<body data-sveltekit-preload-data="hover" class="dark:bg-black dark:text-white">
1010
%sveltekit.body%
1111
</body>
1212
</html>

apps/website/src/routes/+layout.svelte

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
let { children } = $props();
66
</script>
77

8-
<body class="dark:bg-black dark:text-white">
9-
108
<Header />
119

1210
<main>
@@ -16,5 +14,3 @@
1614
<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">
1715
&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>.
1816
</footer>
19-
20-
</body>

0 commit comments

Comments
 (0)