2024-12-22 12:22:47 -08:00
|
|
|
<script setup>
|
2025-01-01 00:26:10 -08:00
|
|
|
import Card from './Card.vue';
|
|
|
|
|
2024-12-22 12:22:47 -08:00
|
|
|
</script>
|
|
|
|
|
2024-12-21 19:11:09 -08:00
|
|
|
<template>
|
|
|
|
<div class="flex justify-center">
|
2025-01-01 00:26:10 -08:00
|
|
|
<div class="flex-col transition-[margin] justify-center md:rounded-md max-md:w-screen lg:mt-3 w-fit-content">
|
|
|
|
<Card>
|
|
|
|
<div class="flex justify-center">
|
|
|
|
<NuxtLink href="/" class="transition text-xl pl-2 pr-2 ease-in-out text-purple-100 hover:text-purple-400 duration-200">Home</NuxtLink>
|
2025-01-04 12:20:53 -08:00
|
|
|
<NuxtLink href="/article/" class="transition text-xl pl-2 pr-2 ease-in-out text-purple-100 hover:text-purple-400 duration-200">Articles</NuxtLink>
|
2025-01-04 13:03:03 -08:00
|
|
|
<NuxtLink href="/article/collections/awesome" class="transition text-xl pl-2 pr-2 ease-in-out text-purple-100 hover:text-purple-400 duration-200">Awesome</NuxtLink>
|
|
|
|
<NuxtLink href="/article/collections/badges" class="transition text-xl pl-2 pr-2 ease-in-out text-purple-100 hover:text-purple-400 duration-200">Badges</NuxtLink>
|
2025-01-01 00:26:10 -08:00
|
|
|
</div>
|
|
|
|
</Card>
|
2024-12-21 19:11:09 -08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|