diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9bb501e..6ec0c9d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,7 +3,7 @@ import { Montserrat } from "next/font/google"; import { ThemeProvider } from "@/components/theme-provider"; import "@/app/globals.css"; -import { UnsignedNav } from "@/components/navigationBar/unSigned"; +import { UnsignedNav } from "@/components/navigationBar/Unsigned"; const montserrat = Montserrat({ subsets: ["latin"], diff --git a/src/components/navigationBar/Unsigned.tsx b/src/components/navigationBar/Unsigned.tsx index 61e0a5c..f745b0d 100644 --- a/src/components/navigationBar/Unsigned.tsx +++ b/src/components/navigationBar/Unsigned.tsx @@ -31,27 +31,31 @@ const landings = [ route: "/crm-landing", }, ]; -const ListItem = React.forwardRef, React.ComponentPropsWithoutRef<"a">>( - ({ className, title, children, ...props }, ref) => { - return ( -
  • - - -
    {title}
    -
    -

    {children}

    -
    -
    -
  • - ); - } -); +const ListItem = React.forwardRef< + React.ElementRef<"a">, + React.ComponentPropsWithoutRef<"a"> +>(({ className, title, children, ...props }, ref) => { + return ( +
  • + + +
    {title}
    +
    +

    + {children} +

    +
    +
    +
  • + ); +}); ListItem.displayName = "ListItem"; export function UnsignedNav() { @@ -86,7 +90,8 @@ export function UnsignedNav() { + aria-label="Brand" + > logo B2DVentures @@ -98,11 +103,17 @@ export function UnsignedNav() { - Businesses + + Businesses +
      {businessComponents.map((component) => ( - + {component.description} ))} @@ -111,11 +122,17 @@ export function UnsignedNav() { - Projects + + Projects +
        {projectComponents.map((component) => ( - + {component.description} ))} @@ -124,11 +141,17 @@ export function UnsignedNav() { - Blogs + + Blogs +
          {blogComponents.map((component) => ( - + {component.description} ))} @@ -137,7 +160,10 @@ export function UnsignedNav() { - + Docs @@ -152,7 +178,7 @@ export function UnsignedNav() {