Design about page

Signed-off-by: Al Asad Nur Riyad <asadnurriyad@gmail.com>
This commit is contained in:
Al Asad Nur Riyad
2023-05-05 00:18:11 +06:00
parent f25c4dff8c
commit 28ae28be2f
8 changed files with 153 additions and 17 deletions

View File

@@ -5,16 +5,16 @@ const path = computed(() => route.fullPath.replace('/', ''))
</script>
<template>
<div class="py-5 border-b text-zinc-700">
<div class="py-5 border-b font-semibold">
<div class="flex px-6 container max-w-5xl justify-between mx-auto items-baseline ">
<ul class="flex items-baseline space-x-5">
<li class="">
<NuxtLink to="/" class="text-2xl text-black font-bold " :class="{ underline: path === '' }">
Home
<li class="text-lg sm:text-2xl font-bold">
<NuxtLink to="/" :class="{ underline: path === '' }">
Riyad's Blog
</NuxtLink>
</li>
</ul>
<ul class="flex items-center space-x-3 font-bold ">
<ul class="flex items-center space-x-3 sm:space-x-6 text-sm sm:text-lg">
<li>
<NuxtLink to="/blogs" :class="{ underline: path === 'blogs' }">
Blogs
@@ -25,9 +25,9 @@ const path = computed(() => route.fullPath.replace('/', ''))
Categories
</NuxtLink>
</li>
<li title="About Me" :class="{ underline: path === 'myself' }">
<NuxtLink to="/myself" aria-label="About me">
About Me
<li title="About Me" :class="{ underline: path === 'about' }">
<NuxtLink to="/about" aria-label="About me">
About
</NuxtLink>
</li>
</ul>