Files
Cloud-Blog/components/page/footer.vue
nurRiyad 7a7527774b test purpose
Signed-off-by: nurRiyad <asadnurriyad@gmail.com>
2023-01-06 00:17:34 +06:00

16 lines
456 B
Vue

<template>
<nav class="bg-gray-900 text-white py-5 border-b border-gray-700">
<div class="container flex justify-between mx-auto">
<NuxtLink to="/" class="text-2xl font-medium">Elon's Blog</NuxtLink>
<ul class="nav flex space-x-5">
<li>
<NuxtLink to="/categories">Categories</NuxtLink>
</li>
<li>
<NuxtLink to="/blogs">Blogs</NuxtLink>
</li>
</ul>
</div>
</nav>
</template>