update landing pages to prerender

main
TZGyn 1 year ago
parent fecd191682
commit b165daddb6
Signed by: TZGyn
GPG Key ID: 122EAF77AE81FD4A

@ -0,0 +1 @@
export const prerender = true

@ -11,27 +11,29 @@
} }
</script> </script>
<div class="flex flex-col items-center w-screen h-screen"> <div class="flex h-screen w-screen flex-col items-center">
<div class="flex justify-between py-4 px-8 w-full max-w-6xl"> <div class="flex w-full max-w-6xl justify-between px-8 py-4">
<div class="flex gap-4 items-center"> <div class="flex items-center gap-4">
<img src="/logo.png" alt="" class="h-8" /> <img src="/logo.png" alt="" class="h-8" />
<div>kon.sh</div> <div>kon.sh</div>
</div> </div>
<div class="flex gap-8 items-center"> <div class="flex items-center gap-8">
<a href="/landing/docs">Docs</a> <a href="/landing/docs">Docs</a>
<a href="#pricing" on:click|preventDefault={scrollIntoView} <a href="#pricing" on:click|preventDefault={scrollIntoView}>
>Pricing</a> Pricing
</a>
</div> </div>
<div class="flex gap-4 items-center"> <div class="flex items-center gap-4">
<a <a
href="/login" href="/login"
class="transition-all text-primary/80 hover:text-primary"> class="text-primary/80 transition-all hover:text-primary">
Login Login
</a> </a>
<Button <Button
href="/signup" href="/signup"
class="bg-orange-400 hover:bg-orange-300 w-fit" class="w-fit bg-orange-400 hover:bg-orange-300">
>Get Started</Button> Get Started
</Button>
<ThemeToggle /> <ThemeToggle />
</div> </div>
</div> </div>

Loading…
Cancel
Save