Update src/app/gallery/page.tsx

This commit is contained in:
2026-05-25 05:30:18 +00:00
parent 23b34ea00f
commit b28c1d080c

View File

@@ -7,7 +7,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
export default function LandingPage() {
export default function GalleryPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -25,9 +25,9 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Biography", id: "/about" },
{ name: "Home", id: "/" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="ELARA"
@@ -67,16 +67,12 @@ export default function LandingPage() {
<FooterBaseCard
logoText="ELARA"
columns={[
{
title: "Studio", items: [{ label: "Gallery", href: "/gallery" }, { label: "Biography", href: "/about" }],
},
{
title: "Connect", items: [{ label: "Contact", href: "/contact" }, { label: "Instagram", href: "#" }],
},
{ title: "Studio", items: [{ label: "Gallery", href: "/gallery" }, { label: "Biography", href: "/about" }] },
{ title: "Connect", items: [{ label: "Contact", href: "/contact" }, { label: "Instagram", href: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}