add frontend and swap whole stack to sveltekit/nodejs
This commit is contained in:
12
src/routes/+page.svelte
Normal file
12
src/routes/+page.svelte
Normal file
@@ -0,0 +1,12 @@
|
||||
<script lang="ts">
|
||||
import { PUBLIC_START_DATE } from '$env/static/public';
|
||||
import Timer from '$lib/components/Countdown/Countdown.svelte';
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Craftattack</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="w-full flex justify-center items-center">
|
||||
<Timer end={Date.parse(PUBLIC_START_DATE)} />
|
||||
</div>
|
||||
Reference in New Issue
Block a user