mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-02-07 02:07:01 +00:00
add sveltekit version
This commit is contained in:
parent
2f522be388
commit
d1c0eb8d17
20 changed files with 3252 additions and 0 deletions
14
src/lib/layout/NavLink.svelte
Normal file
14
src/lib/layout/NavLink.svelte
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
<script lang="ts">
|
||||
export let href: string;
|
||||
export let text: string;
|
||||
</script>
|
||||
|
||||
<li class="block w-1/2 bg-amber-800">
|
||||
<a
|
||||
class="text-gray-300 hover:text-amber-200 focus:text-amber-200 focus:outline-none transition"
|
||||
alt=""
|
||||
{href}
|
||||
>
|
||||
{text}
|
||||
</a>
|
||||
</li>
|
||||
Loading…
Add table
Add a link
Reference in a new issue