Update src/app/gallery/page.tsx

This commit is contained in:
2026-05-09 08:35:33 +00:00
parent 9fc9f21e03
commit 88f4bd28f1

View File

@@ -3,26 +3,25 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
export default function GalleryPage() {
return (
<ThemeProvider defaultButtonVariant="shift-hover" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ThemeProvider>
<ReactLenis root>
<NavbarStyleCentered navItems={[{ name: "Home", id: "/" }, { name: "Gallery", id: "/gallery" }, { name: "Book", id: "/booking" }]} brandName="Madhur Radio" />
<NavbarStyleCentered navItems={[{name: "Home", id: "/"}, {name: "Gallery", id: "/gallery"}, {name: "Booking", id: "/booking"}]} brandName="Madhur Radio" />
<div className="pt-32 pb-20">
<ProductCardThree
title="Our Portfolio"
description="View our past work and setups."
gridVariant="three-columns-all-equal-width"
title="Event Portfolio"
description="Explore our past event setups and lighting configurations."
gridVariant="two-columns-alternating-heights"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "1", name: "Wedding DJ", price: "", imageSrc: "http://img.b2bpic.net/free-photo/world-theatre-day-celebration_23-2151185526.jpg" },
{ id: "2", name: "Lighting Setup", price: "", imageSrc: "http://img.b2bpic.net/free-photo/male-dj-party-charge-music-entertainment_23-2149658386.jpg" },
{ id: "3", name: "Event Sound", price: "", imageSrc: "http://img.b2bpic.net/free-photo/sound-mixer_1359-7.jpg" }
{ id: "g1", name: "Wedding Reception Setup", price: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/world-theatre-day-celebration_23-2151185526.jpg?_wi=2" },
{ id: "g2", name: "Night Party Lighting", price: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/male-dj-party-charge-music-entertainment_23-2149658386.jpg?_wi=2" },
{ id: "g3", name: "Festival Setup", price: "Gallery", imageSrc: "http://img.b2bpic.net/free-photo/tech-elements-close-up-background_23-2148882624.jpg?_wi=2" }
]}
/>
</div>