Update nuxt to version 4 (#92)
* Nuxt 3.17.4 and other dependencies updated * Temporary fix (maybe) of the Inline Code * Update nuxt to version 4
This commit is contained in:
25
app/components/blog/empty.vue
Normal file
25
app/components/blog/empty.vue
Normal file
@@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<article
|
||||
class="group border dark:border-gray-800 m-2 rounded-2xl overflow-hidden shadow-lg text-zinc-700"
|
||||
>
|
||||
<NuxtLink to="/">
|
||||
<div
|
||||
class="lg:h-48 md:h-36 w-full object-cover object-center group-hover:scale-[1.05] transition-all duration-500"
|
||||
>
|
||||
<LogoConfused />
|
||||
</div>
|
||||
<div class="p-5">
|
||||
<h2
|
||||
class="text-3xl font-semibold text-black dark:text-zinc-300 pb-1 group-hover:text-sky-700 dark:group-hover:text-sky-400"
|
||||
>
|
||||
No Post Available
|
||||
</h2>
|
||||
|
||||
<div class="flex group-hover:underline text-sky-700 dark:text-sky-400 items-center pt-2">
|
||||
<p>Back To Home</p>
|
||||
<LogoArrow />
|
||||
</div>
|
||||
</div>
|
||||
</NuxtLink>
|
||||
</article>
|
||||
</template>
|
||||
Reference in New Issue
Block a user