From 4cf62b5ee03e64e0c5e611bc321e0cdd48f2bb55 Mon Sep 17 00:00:00 2001 From: THIS ONE IS A LITTLE BIT TRICKY KRUB Date: Wed, 28 Aug 2024 16:06:06 +0700 Subject: [PATCH] chore: Refactor UnsignedNav component and update navigation menu structure --- src/components/navigationBar/Unsigned.tsx | 132 +++++++++------------- 1 file changed, 51 insertions(+), 81 deletions(-) diff --git a/src/components/navigationBar/Unsigned.tsx b/src/components/navigationBar/Unsigned.tsx index 4cff6d3..27fb047 100644 --- a/src/components/navigationBar/Unsigned.tsx +++ b/src/components/navigationBar/Unsigned.tsx @@ -14,65 +14,70 @@ import Link from "next/link"; import { NavigationMenu, NavigationMenuContent, - NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, - NavigationMenuViewport, + navigationMenuTriggerStyle, } from "@/components/ui/navigation-menu"; export function UnsignedNav() { return ( {/* */} - - - - Businesses - - - - - - - + +
    +
  • + Home +
  • + + + + +
      +
    • Businesses
    • +
    +
    + Appply +
    + + + + Projects + + Lorem Ipsum + + + + Blog + + Lorem Ipsum + + +
    +
    +
  • + + + Docs + + + + {landings.map((page) => ( + + {page.title} + + ))} + + +
  • +
+
- +
@@ -115,7 +120,7 @@ export function UnsignedNav() { - + @@ -138,39 +143,4 @@ const landings = [ title: "Landing 02", route: "/crm-landing", }, - { - id: 3, - title: "Landing 03", - route: "/ai-content-landing", - }, - { - id: 4, - title: "Landing 04", - route: "/new-intro-landing", - }, - { - id: 5, - title: "Landing 05", - route: "/about-us-landing", - }, - { - id: 6, - title: "Landing 06", - route: "/contact-us-landing", - }, - { - id: 7, - title: "Landing 07", - route: "/faqs-landing", - }, - { - id: 8, - title: "Landing 08", - route: "/pricing-landing", - }, - { - id: 9, - title: "Landing 09", - route: "/career-landing", - }, ];