From 25a6f85afe9a18c78a6dbd9699006f5e48424a27 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 12 Jan 2026 12:28:43 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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: "#" } ] } - ]} + ] /> -- 2.49.1