Add src/app/gallery/page.tsx

This commit is contained in:
2026-05-23 21:39:04 +00:00
parent 8d87c11b92
commit b1e29b8763

20
src/app/gallery/page.tsx Normal file
View File

@@ -0,0 +1,20 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function GalleryPage() {
return (
<ThemeProvider>
<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 className="pt-32 pb-20 container mx-auto text-center">
<h1 className="text-5xl font-bold">Gallery</h1>
</div>
<FooterSimple columns={[]} />
</ReactLenis>
</ThemeProvider>
);
}