teoldalad/routes/privacy/+page.svelte
2024-03-13 00:30:45 +01:00

20 lines
No EOL
470 B
Svelte

<script lang="ts">
import Landing from '$lib/components/screens/Landing.svelte';
export let data;
</script>
<svelte:head>
<title>YourSitee</title>
</svelte:head>
<Landing dim={true}>
<div class="container mx-auto">
<p class="font-medium text-6xl mb-16">Privacy Policy</p>
<div class="markdown">
<!-- eslint-disable-next-line svelte/no-at-html-tags -->
{@html data.text}
</div>
</div>
</Landing>