Skip to content

Commit

Permalink
blog route on mob (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinfe123 committed Feb 22, 2024
1 parent 781c14d commit 33e5e7a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions apps/www/src/components/landing-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,20 @@ export const LandingNav = ({ mobileView }: { mobileView?: boolean }) => {
</button>
</Link>
</li>
<li className="">
<Link href="/blog">
<button
type="button"
className={cn(
"px-4 py-1 text-lg font-light text-black/60 transition-[text-shadow,color] duration-200 hover:text-black/80 focus:outline-none dark:text-white/60 dark:hover:text-white/75",
pathname?.includes("/blog") &&
"text-black/80 dark:text-white/75 font-bold",
)}
>
Blog
</button>
</Link>
</li>

<li className="">
<Link href="/changelog">
Expand Down

0 comments on commit 33e5e7a

Please sign in to comment.