Add src/app/gallery/page.tsx

This commit is contained in:
2026-03-28 12:24:35 +00:00
parent 2fab5a54c0
commit b08e785831

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

@@ -0,0 +1,21 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function GalleryPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline navItems={[{name: "Home", id: "/"}, {name: "Blog/Vlog", id: "/blog"}, {name: "Recipes", id: "/recipes"}, {name: "About", id: "/about"}, {name: "Gallery", id: "/gallery"}, {name: "Contact", id: "/contact"}]} brandName="Lumiere" />
<div className="min-h-screen pt-32 pb-20 px-6 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-8">Gallery</h1>
<p>Explore our visual journey through photography and highlights.</p>
</div>
<FooterLogoEmphasis columns={[]} logoText="Lumiere" />
</ReactLenis>
</ThemeProvider>
);
}