1
0
mirror of https://github.com/djkotowski/personal-website.git synced 2026-06-20 13:02:47 -05:00

Fill in initial layout and resume details

This commit is contained in:
2023-05-07 01:39:52 -05:00
parent 28a4b45a34
commit c801394771
12 changed files with 243 additions and 7 deletions
+9
View File
@@ -0,0 +1,9 @@
<script lang="ts">
import type { HTMLAnchorAttributes } from 'svelte/elements'
export let href: string
export let target: HTMLAnchorAttributes['target']
</script>
<a class="text-cyan-200 hover:text-cyan-400 hover:border-b border-dotted" {href} {target}><slot /></a>