Merge version_1 into main #1

Merged
development merged 1 commits from version_1 into main 2026-01-12 12:28:49 +00:00

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -182,27 +182,27 @@ export default function LandingPage() {
logoText="Artistry" logoText="Artistry"
columns={[ columns={[
{ {
title: "Navigation", items: [ items: [
{ label: "Gallery", href: "gallery" }, { label: "Gallery", href: "gallery" },
{ label: "About", href: "about" }, { label: "About", href: "about" },
{ label: "Artists", href: "artists" } { label: "Artists", href: "artists" }
] ]
}, },
{ {
title: "Services", items: [ items: [
{ label: "Contact", href: "contact" }, { label: "Contact", href: "contact" },
{ label: "Submit Work", href: "#" }, { label: "Submit Work", href: "#" },
{ label: "FAQ", href: "#" } { label: "FAQ", href: "#" }
] ]
}, },
{ {
title: "Legal", items: [ items: [
{ label: "Privacy Policy", href: "#" }, { label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }, { label: "Terms of Service", href: "#" },
{ label: "Accessibility", href: "#" } { label: "Accessibility", href: "#" }
] ]
} }
]} ]
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>