import Image from "next/image"; import { SectionHeading } from "@/components/ui"; export const metadata = { title: "Gallery — UP Parivaar Dallas" }; const stats = [ { n: "500+", l: "Families Connected" }, { n: "50+", l: "Community Events" }, { n: "10,000+", l: "Shared Memories" }, { n: "20+", l: "Cultural Celebrations" }, ]; const filters = ["All Memories", "Festivals", "Family Events", "Community Gatherings", "Kids & Youth", "Food & Traditions", "Dallas Life", "Videos"]; const featured = [ { img: "/img/gallery_2_.jpg", title: "Diwali Milan 2024", cat: "Festival", h: "tall" }, { img: "/img/gallery_7_.jpg", title: "Classical Dance Night", cat: "Festival", h: "short" }, { img: "/img/gallery_12_.jpg", title: "Diwali Evening Puja", cat: "Festival", h: "tall" }, { img: "/img/gallery_6_.jpg", title: "Holi Utsav 2024", cat: "Festival", h: "tall" }, { img: "/img/gallery_16_.jpg", title: "Family Celebration", cat: "Family Events", h: "tall" }, { img: "/img/gallery_8_.jpg", title: "Three Generations", cat: "Family Events", h: "short" }, { img: "/img/gallery_4_.jpg", title: "Traditional Thali", cat: "Food & Traditions", h: "tall" }, { img: "/img/gallery_19_.jpg", title: "Community Potluck Night", cat: "Food & Traditions", h: "tall" }, { img: "/img/gallery_20_.jpg", title: "Generations Together", cat: "Food & Traditions", h: "tall" }, ]; const albums = [ { img: "/img/gallery_15_.jpg", title: "Diwali Milan 2025", sub: "Community Celebration", count: "10 Photos", date: "March 14-15, 2026" }, { img: "/img/gallery_13_.jpg", title: "Holi Utsav 2025", sub: "Festival of Colors", count: "20 Photos", date: "March 14-15, 2026" }, { img: "/img/gallery_14_.jpg", title: "Family Picnic Dallas", sub: "Summer Gathering", count: "10 Photos", date: "March 14-15, 2026" }, ]; const experiences = [ { img: "/img/gallery_2_.jpg", title: "Festivals", sub: "Diwali, Holi, Navratri, Janmashtami" }, { img: "/img/gallery_10_.jpg", title: "Family Moments", sub: "Birthdays, Anniversaries" }, { img: "/img/gallery_9_.jpg", title: "Food & Culture", sub: "Potlucks, Traditional Cuisine" }, { img: "/img/gallery_11_.jpg", title: "Community Service", sub: "Volunteer Programs and Charity" }, ]; const videos = [ { img: "/img/gallery_15_.jpg", tag: "Festival Highlights", title: "Diwali Milan 2024 Highlights" }, { img: "/img/gallery_16_.jpg", tag: "Festival of Colors", title: "Holi Utsav Celebrations" }, { img: "/img/gallery_17_.jpg", tag: "Cultural Performance", title: "Classical Dance Night" }, { img: "/img/gallery_18_.jpg", tag: "Community Gathering", title: "Community Family Day" }, { img: "/img/gallery_14_.jpg", tag: "Picnic", title: "Family Picnic Dallas" }, ]; export default function GalleryPage() { return ( <> {/* HERO */}
Gallery

Memories That Keep Uttar Pradesh Close to Home

Every festival, gathering and celebration strengthens the bond between UP families across Dallas.

{stats.map((s) => (

{s.n}

{s.l}

))}
{/* FILTERS + FEATURED */}
{filters.map((f, i) => ( {f} ))}
Featured

Community Moments

{featured.map((f) => (
{f.title}

{f.title}

{f.cat}

))}
{/* ALBUMS */}
Collections

Explore Event Albums

{albums.map((a) => (
{a.title} ▤ {a.count}

{a.title}

{a.sub} ▦ {a.date}
))}
{/* EXPERIENCES */}
Explore

Memories by Experience

{experiences.map((e) => (
{e.title}

{e.title}

{e.sub}

))}
{/* VIDEOS */}
Relive the Celebrations} desc="Cinematic highlights from our most beloved community events" align="split" />
{videos.map((v) => (
{v.title}
4:32

{v.tag}

{v.title}

))}
{/* CTA */}

Every Memory Becomes Part of Our Story

Join events, celebrate traditions, and create lasting memories with the UP Parivaar Dallas community. Your family's story is waiting to be written here.

); }