feat: add an option to remove the landing page

This commit is contained in:
Levente Orban
2025-10-10 10:17:06 +02:00
parent c98260efec
commit d10af13134
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "cactoide",
"private": true,
"version": "0.0.3",
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite dev",

View File

@@ -3,7 +3,7 @@
import Navbar from '$lib/components/Navbar.svelte';
import { t } from '$lib/i18n/i18n.js';
let { data } = $props();
let { data, children } = $props();
</script>
<svelte:head>
@@ -21,7 +21,7 @@
<!-- Main content -->
<main class="relative z-10">
<slot />
{@render children?.()}
</main>
<!-- Footer -->