Switch to version 1: modified src/app/gallery/page.tsx

This commit is contained in:
2026-05-06 12:34:07 +00:00
parent 2bd24e11a1
commit e0eb5e8de3

View File

@@ -2,9 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function GalleryPage() {
return (
@@ -23,46 +24,44 @@ export default function GalleryPage() {
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Municipalities", id: "/municipalities" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
navItems={[ { name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Municipalities", id: "/municipalities" }, { name: "Gallery", id: "/gallery" }, { name: "Contact", id: "/contact" } ]}
brandName="Jhapa District"
button={{ text: "Get Started", href: "/contact" }}
button={{ text: "Contact Us", href: "/contact" }}
/>
</div>
<div id="gallery" data-section="gallery">
<ProductCardFour
title="Jhapa District Gallery"
description="Explore the breathtaking beauty and rich cultural heritage of Jhapa through our curated collection."
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
products={[
{ id: "g1", name: "Kankai River Sunset", price: "", variant: "Landscape", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-scenery-green-trees-high-mountains-reflected-lake_181624-7823.jpg?_wi=1" },
{ id: "g2", name: "Traditional Culture", price: "", variant: "Heritage", imageSrc: "http://img.b2bpic.net/free-photo/charming-young-girl-colored-embroidered-dress-poses-near-house_8353-9555.jpg?_wi=1" },
{ id: "g3", name: "Tea Gardens", price: "", variant: "Agriculture", imageSrc: "http://img.b2bpic.net/free-photo/green-tea-bud-leaves-green-tea-plantations-morning-nature-background_335224-954.jpg" },
{ id: "g4", name: "Scenic Waterways", price: "", variant: "Landscape", imageSrc: "http://img.b2bpic.net/free-photo/pitfour-lake_181624-2407.jpg" }
]}
products={[ { id: "g1", name: "Tea Gardens", price: "Nature", variant: "Landscape", imageSrc: "http://img.b2bpic.net/free-photo/tea-plantation-asia_1147-563.jpg" }, { id: "g2", name: "Kankai River", price: "Landmark", variant: "Riverside", imageSrc: "http://img.b2bpic.net/free-photo/tourists-walks-through-woods_72229-7.jpg" }, { id: "g3", name: "Local Temples", price: "Spiritual", variant: "Heritage", imageSrc: "http://img.b2bpic.net/free-photo/indian-hindu-temple-singapore_1203-7102.jpg" } ]}
title="District Gallery"
description="Capturing the essence of Jhapa through its natural and cultural beauty."
/>
</div>
<div id="product" data-section="product">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Community Moments"
description="Daily life in the eastern gateway."
products={[ { id: "p1", brand: "Life", name: "Community Market", price: "Free", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/indigenous-person-doing-daily-chores-showcasing-lifestyle_23-2149711135.jpg" }, { id: "p2", brand: "Nature", name: "Tea Harvest", price: "Free", rating: 4, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-tea-plantation-south-east-asia_1147-562.jpg?_wi=1" }, { id: "p3", brand: "Nature", name: "Tea Harvest 2", price: "Free", rating: 4, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-tea-plantation-south-east-asia_1147-562.jpg?_wi=2" } ]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Jhapa District"
columns={[
{ title: "Explore", items: [{ label: "About", href: "/about" }, { label: "Municipalities", href: "/municipalities" }] },
{ title: "Information", items: [{ label: "Gallery", href: "/gallery" }, { label: "Contact", href: "/contact" }] },
]}
columns={[ { title: "Explore", items: [{ label: "About", href: "/about" }, { label: "Municipalities", href: "/municipalities" }] }, { title: "Information", items: [{ label: "Gallery", href: "/gallery" }, { label: "Contact", href: "/contact" }] } ]}
copyrightText="© 2024 Jhapa District Portal. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}