diff --git a/src/app/page.tsx b/src/app/page.tsx index 5d14838..7dd74cc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,4 +1,4 @@ -"use client" +"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; @@ -182,27 +182,27 @@ export default function LandingPage() { logoText="Artistry" columns={[ { - title: "Navigation", items: [ + items: [ { label: "Gallery", href: "gallery" }, { label: "About", href: "about" }, { label: "Artists", href: "artists" } ] }, { - title: "Services", items: [ + items: [ { label: "Contact", href: "contact" }, { label: "Submit Work", href: "#" }, { label: "FAQ", href: "#" } ] }, { - title: "Legal", items: [ + items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Accessibility", href: "#" } ] } - ]} + ] />