Initial commit WIP

This commit is contained in:
Mike Conrad
2025-05-08 19:18:45 -04:00
commit 09cbc3f5a3
235 changed files with 25013 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<script setup lang="ts">
const { links } = defineProps<{
links: { name: string; to: string }[];
}>();
</script>
<template>
<ul class="flex items-center gap-4">
<NuxtLink
:to="link.to"
:class="[
$route.path === link.to? 'text-gradient': 'text-zinc-700 dark:text-zinc-400',
'px-2 hover:text-zinc-900 dark:hover:text-zinc-200'
]"
v-for="(link, index) in links"
:key="`navlinks-${index}`"
>
{{ link.name }}
</NuxtLink>
</ul>
</template>