Add src/app/gallery/page.tsx

This commit is contained in:
2026-03-26 17:56:38 +00:00
parent 73f1afe2bc
commit 7a75b011be

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

@@ -0,0 +1,34 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
export default function GalleryPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Offerings", id: "/offerings" },
{ name: "Gallery", id: "/gallery" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
brandName="Elysium Elite"
/>
<MetricCardEleven
title="Portfolio Gallery"
description="A visual chronicle of our most distinguished projects."
animationType="scale-rotate"
metrics={[]}
className="pt-32"
/>
<FooterSimple columns={[]} bottomLeftText="© 2024 Elysium Elite." bottomRightText="" />
</ReactLenis>
</ThemeProvider>
);
}