Add src/app/gallery/page.tsx

This commit is contained in:
2026-04-26 15:28:57 +00:00
parent d6fcd070ad
commit a3b116a9ad

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

@@ -0,0 +1,19 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function GalleryPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen navItems={[{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "About", id: "/about" }, { name: "Gallery", id: "/gallery" }, { name: "Contact", id: "/contact" }]} brandName="CR Dines" />
<TeamCardTwo animationType="slide-up" gridVariant="three-columns-all-equal-width" title="Gallery" members={[]} />
<FooterSimple columns={[]} />
</ReactLenis>
</ThemeProvider>
);
}