Fuckin uhhh

This commit is contained in:
cirroskais 2024-03-16 11:52:19 -04:00
parent 7e0d1e77ec
commit b0fa3b64de
No known key found for this signature in database
GPG key ID: 5FC73EBF2678E33D
3 changed files with 19 additions and 4 deletions

View file

@ -30,7 +30,7 @@
<div
class="flex p-2 space-x-2 rounded-lg border-b-2 transition-colors border-neutral-400 hover:border-neutral-500 hover:dark:border-neutral-500 dark:border-neutral-700 bg-neutral-200 dark:bg-neutral-900"
>
<p>Take me back!</p>
<p>Go Back</p>
</div>
</button>
<a

View file

@ -1,9 +1,11 @@
<script>
import { Undo, Home } from 'lucide-svelte';
import { page } from '$app/stores';
import Button from '$lib/components/Button.svelte';
import Link from '$lib/components/Link.svelte';
import { goBack } from '$lib/';
import Button from '$lib/components/Button.svelte';
import Link from '$lib/components/Link.svelte';
</script>
<div class="flex justify-center items-center h-screen">
@ -14,9 +16,11 @@
</div>
<div class="flex space-x-2">
<Button click={goBack}>
<p>Take me back!</p>
<Undo />
<p>Go Back</p>
</Button>
<Link style="button" href="/">
<Home />
<p>Go Home</p>
</Link>
</div>

View file

@ -4,7 +4,12 @@
import ThemeSwitcher from '$lib/components/ThemeSwitcher.svelte';
import Link from '$lib/components/Link.svelte';
import Button from '$lib/components/Button.svelte';
import Logo from '$lib/components/Logo.svelte';
function fuckYou() {
toast.error('Not Implemented');
}
</script>
<div class="flex justify-center items-center h-screen">
@ -30,5 +35,11 @@
<p>Register</p>
</Link>
</div>
<div class="flex flex-col">
<Button click={fuckYou}>
<p class="w-full text-center">Keycloak Login</p>
</Button>
</div>
</div>
</div>