Update to Nuxt 3.14 and Replace npm with pnpm (#72)
Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
This commit is contained in:
committed by
GitHub
parent
32e4f6fe44
commit
9db5ae8103
@@ -4,16 +4,14 @@ import { footerData, seoData } from '~/data'
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<p class="text-black dark:text-zinc-300 text-base font-semibold">
|
||||
Connect With Me
|
||||
</p>
|
||||
<p class="dark:text-zinc-300 ">
|
||||
<p class="text-black dark:text-zinc-300 text-base font-semibold">Connect With Me</p>
|
||||
<p class="dark:text-zinc-300">
|
||||
{{ footerData.authorInterest }}
|
||||
</p>
|
||||
|
||||
<a
|
||||
:href="`mailto: ${seoData.mailAddress}`"
|
||||
class="block text-center w-full bg-sky-700 p-2 rounded-lg text-[#F1F2F4] mt-3 text-sm"
|
||||
class="block text-center w-full bg-sky-700 p-2 rounded-lg text-[#F1F2F4] mt-3 text-sm"
|
||||
>
|
||||
Sent Mail
|
||||
</a>
|
||||
|
||||
@@ -4,10 +4,10 @@ import { footerData } from '~/data'
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<p class="text-black dark:text-zinc-300 text-2xl py-1 font-semibold">
|
||||
<p class="text-black dark:text-zinc-300 text-2xl py-1 font-semibold">
|
||||
{{ footerData.author }}
|
||||
</p>
|
||||
<p class="py-2 dark:text-zinc-300 ">
|
||||
<p class="py-2 dark:text-zinc-300">
|
||||
{{ footerData.aboutAuthor }}
|
||||
</p>
|
||||
<div class="my-3 space-x-3 pb-3">
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -4,10 +4,8 @@ import { footerData } from '~/data'
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<p class="text-black dark:text-zinc-300 text-base py-1 font-semibold">
|
||||
About This Site
|
||||
</p>
|
||||
<p class="py-2 dark:text-zinc-300 ">
|
||||
<p class="text-black dark:text-zinc-300 text-base py-1 font-semibold">About This Site</p>
|
||||
<p class="py-2 dark:text-zinc-300">
|
||||
{{ footerData.aboutTheSite }}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user