Update src/app/gallery/page.tsx

This commit is contained in:
2026-05-23 21:39:32 +00:00
parent 4ec0ee4992
commit 3bbae5db3b

View File

@@ -7,13 +7,15 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function GalleryPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "Menu", id: "/menu"}, {name: "Catering", id: "/catering"}, {name: "Reservations", id: "/reservations"}, {name: "About", id: "/about"}, {name: "Gallery", id: "/gallery"}, {name: "Contact", id: "/contact"}]} brandName="ABC Barbeque" />
<div id="nav" data-section="nav">
<NavbarStyleApple navItems={[{name: "Home", id: "/"}, {name: "Menu", id: "/menu"}, {name: "About", id: "/about"}, {name: "Gallery", id: "/gallery"}, {name: "Contact", id: "/contact"}]} brandName="ABC Barbeque" />
</div>
<div className="pt-32 pb-20 container mx-auto text-center">
<h1 className="text-5xl font-bold">Gallery</h1>
</div>
<FooterSimple columns={[]} />
<FooterSimple columns={[]} bottomLeftText="© 2024 ABC Barbeque" bottomRightText="All rights reserved" />
</ReactLenis>
</ThemeProvider>
);