init
This commit is contained in:
commit
d761a10bf7
102 changed files with 4761 additions and 0 deletions
20
routes/privacy/+page.svelte
Normal file
20
routes/privacy/+page.svelte
Normal file
|
@ -0,0 +1,20 @@
|
|||
<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>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue