Update to Nuxt 3.14 and Replace npm with pnpm (#72)

Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
This commit is contained in:
Al Asad Nur Riyad
2024-11-09 03:18:21 +06:00
committed by GitHub
parent 32e4f6fe44
commit 9db5ae8103
49 changed files with 15735 additions and 20211 deletions

View File

@@ -1,19 +1,9 @@
<template>
<div class="flex flex-col dark:text-zinc-300 my-5 md:my-0 md:justify-self-center">
<p class="text-black dark:text-zinc-300 text-base font-semibold">
Quick Link
</p>
<NuxtLink to="/" class="hover:underline">
Home
</NuxtLink>
<NuxtLink to="/blogs" class="hover:underline">
Blogs
</NuxtLink>
<NuxtLink to="/categories" class="hover:underline">
Categories
</NuxtLink>
<NuxtLink to="/about" class="hover:underline">
About Me
</NuxtLink>
<div class="flex flex-col dark:text-zinc-300 my-5 md:my-0 md:justify-self-center">
<p class="text-black dark:text-zinc-300 text-base font-semibold">Quick Link</p>
<NuxtLink to="/" class="hover:underline"> Home </NuxtLink>
<NuxtLink to="/blogs" class="hover:underline"> Blogs </NuxtLink>
<NuxtLink to="/categories" class="hover:underline"> Categories </NuxtLink>
<NuxtLink to="/about" class="hover:underline"> About Me </NuxtLink>
</div>
</template>