From 2d08aea523ec3b09dc4fbf46edf53bf59f55424e Mon Sep 17 00:00:00 2001 From: Nicholai Date: Mon, 6 Oct 2025 20:50:55 -0600 Subject: [PATCH] refined appearance of navigation --- components/navigation.tsx | 76 ++++++++++++++++++++------------------- 1 file changed, 40 insertions(+), 36 deletions(-) diff --git a/components/navigation.tsx b/components/navigation.tsx index af4edb4d8..418a86120 100644 --- a/components/navigation.tsx +++ b/components/navigation.tsx @@ -4,7 +4,7 @@ import { useCallback, useEffect, useState } from "react" import type { MouseEvent } from "react" import Link from "next/link" import { usePathname, useRouter } from "next/navigation" -import { Menu, X } from "lucide-react" +import { ArrowUpRight, Menu, X } from "lucide-react" import { Button } from "@/components/ui/button" import { @@ -132,56 +132,60 @@ export function Navigation() {
- UNITED TATTOO + + UNITED + +
+ + + TATTOO + +
-
+
- - {navItems.map((item) => { - const isActive = !item.isButton && activeSection === item.id + + {navItems + .filter((item) => !item.isButton) + .map((item) => { + const isActive = activeSection === item.id - if (item.isButton) { return ( - + {item.label} + ) - } - - return ( - - - {item.label} - - - ) - })} + })} + +