diff --git a/src/app/landing/page.tsx b/src/app/landing/page.tsx
index f691ba6..49c9cd8 100644
--- a/src/app/landing/page.tsx
+++ b/src/app/landing/page.tsx
@@ -1,11 +1,11 @@
"use client";
import React from "react";
-import { UnsignedNav } from "@/components/navigationBar/Unsigned";
+import { UnsignedNav } from "@/components/navigationBar/unSigned";
-export default function Page(){
- return (
-
-
-
- );
-}
\ No newline at end of file
+export default function Page() {
+ return (
+
+
+
+ );
+}
diff --git a/src/components/navigationBar/Unsigned.tsx b/src/components/navigationBar/Unsigned.tsx
index f5bdfa0..b2a3f7d 100644
--- a/src/components/navigationBar/Unsigned.tsx
+++ b/src/components/navigationBar/Unsigned.tsx
@@ -9,7 +9,7 @@ import {
} from "@/components/ui/dropdown-menu";
import { Menu } from "lucide-react";
import { Card } from "@/components/ui/card";
-// import ThemeToggle from "@/components/theme-toggle";
+import { ThemeToggle } from "@/components/theme-toggle";
import { Button } from "@/components/ui/button";
// import ShadcnKit from "@/components/icons/shadcn-kit";
// import { nanoid } from "nanoid";
@@ -24,15 +24,14 @@ import {
navigationMenuTriggerStyle,
} from "@/components/ui/navigation-menu";
import { cn } from "@/lib/utils";
-import { Icons } from "@/components/icons"
+import { Icons } from "@/components/icons";
export function UnsignedNav() {
const components = [
{
title: "Businesses",
href: "",
- description:
- "Apply",
+ description: "Apply",
},
];
return (
@@ -50,11 +49,7 @@ export function UnsignedNav() {
{components.map((component) => (
-
+
{component.description}
))}
@@ -63,15 +58,11 @@ export function UnsignedNav() {
-
- Projects
-
+ Projects
Lorem Ipsum
-
- Blog
-
+ Blog
Lorem Ipsum
@@ -146,7 +137,7 @@ export function UnsignedNav() {
- {/* */}
+
);
@@ -164,30 +155,28 @@ const landings = [
route: "/crm-landing",
},
];
-const ListItem = React.forwardRef<
- React.ElementRef<"a">,
- React.ComponentPropsWithoutRef<"a">
->(({ className, title, children, ...props }, ref) => {
- return (
- -
-
-
-
{title}
-
-
-
- {children}
-
-
-
-
- );
-});
+const ListItem = React.forwardRef, React.ComponentPropsWithoutRef<"a">>(
+ ({ className, title, children, ...props }, ref) => {
+ return (
+ -
+
+
+
{title}
+
+
+
+ {children}
+
+
+
+
+ );
+ }
+);
ListItem.displayName = "ListItem";