Files
uppariwar/lib/data.ts
T

137 lines
5.1 KiB
TypeScript

import type { FeaturedEvent, MiniEvent } from "@/components/EventCard";
const schedule = [
{ label: "Welcome & Registration", time: "5:00 PM" },
{ label: "Cultural Activities", time: "5:30 PM" },
{ label: "Devotional Program", time: "6:30 PM" },
{ label: "Community Dinner", time: "7:30 PM" },
];
export const featuredEvents: FeaturedEvent[] = [
{
title: "Sawan Milan & Seva Kickoff",
date: "July 20, 2026",
step: "01 / 06",
where: "Sunday, July 19 · North Texas community hall · final venue after committee approval",
desc: "A family evening with devotional music, kids activities, volunteer desks and newcomer welcome.",
image: "/img/events_1_.jpg",
thumb: "/img/events_2_.jpg",
schedule,
},
{
title: "Diwali Celebration",
date: "July 20, 2026",
step: "02 / 06",
where: "Sunday, July 19 · North Texas community hall · final venue after committee approval",
desc: "An evening of diyas, cultural performances, food and the festival of lights.",
image: "/img/events_3_.jpg",
thumb: "/img/events_4_.jpg",
schedule,
},
];
export const miniEvents: MiniEvent[] = [
{
tag: "Festival",
place: "Vrindavan, India",
date: "March 14-15, 2026",
title: "Navratri Garba Night",
desc: "Nine nights of dance, dandiya, devotion, vibrant celebrations, cultural traditions, community spirit, and joy.",
image: "/img/events_5_.jpg",
},
{
tag: "Festival",
place: "Vrindavan, India",
date: "March 14-15, 2026",
title: "Youth Cricket Cup",
desc: "Next-gen Parivaar takes the field, connecting cultures, celebrating heritage, and building lasting bonds.",
image: "/img/events_7_.jpg",
},
{
tag: "Food",
place: "Vrindavan, India",
date: "March 14-15, 2026",
title: "Community Food Drive",
desc: "Pack and serve 2,000 meals across North Texas, supporting families and strengthening community connections together.",
image: "/img/events_9_.jpg",
},
{
tag: "Festival",
place: "Vrindavan, India",
date: "March 14-15, 2026",
title: "Bollywood Music Night",
desc: "Enjoy live playback, antakshari, and dancing with friends and family until late night, creating unforgettable memories together.",
image: "/img/events_6_.jpg",
},
{
tag: "Festival",
place: "Vrindavan, India",
date: "March 14-15, 2026",
title: "Diwali Gala & Awards",
desc: "Our biggest night brings together lights, dinner, celebration, unforgettable moments, cherished memories, and joy.",
image: "/img/events_8_.jpg",
},
{
tag: "Festival",
place: "Vrindavan, India",
date: "March 14-15, 2026",
title: "Spring Family Picnic",
desc: "Games, potluck, and sunshine bring families together for laughter, connection, lasting memories, and fun.",
image: "/img/events_10_.jpg",
},
];
export const testimonials = [
{
stars: 3,
quote:
"We landed in Frisco knowing no one. Within a week the parivaar helped us find a home, a pediatrician and a Diwali to attend.",
name: "Anjali & Rohit",
role: "New family · Frisco",
avatar: "/img/about_5_.jpg",
},
{
stars: 3,
quote:
"My daughter found her best friends through youth cricket. Watching the next generation grow up with this culture is everything.",
name: "Manoj Tiwari",
role: "Parent · Plano",
avatar: "/img/about_6_.jpg",
},
{
stars: 3,
quote:
"I volunteered for one food drive and found my purpose. 200 meals became 2,000. The seva spirit is contagious.",
name: "Priya Singh",
role: "Volunteer · Irving",
avatar: "/img/about_8_.jpg",
},
];
export const faqs = [
{
q: "What is UP Parivar Dallas?",
a: "UP Parivar Dallas is a nonprofit cultural and community organization that brings together families connected to Uttar Pradesh living across North Texas. We celebrate our traditions, festivals, culture, and shared values while building meaningful community connections.",
},
{
q: "Do I need to be from Uttar Pradesh to participate?",
a: "Not at all. While our roots are in Uttar Pradesh, everyone who shares our values and enjoys our culture is warmly welcome to attend events and join the community.",
},
{
q: "What types of events does UP Parivar Dallas organize?",
a: "We host festivals like Diwali and Holi, cultural performances, youth sports, family picnics, seva and volunteering drives, and professional networking gatherings across the Dallas-Fort Worth metroplex.",
},
{
q: "How can I become a member?",
a: "Complete the membership application on our Why Join page. Once submitted, a volunteer will personally reach out to welcome you and help you find your circles.",
},
{
q: "Are families and children welcome at events?",
a: "Absolutely. Our events are family-first, with dedicated kids zones, activities, and programs designed for all generations.",
},
{
q: "Is UP Parivar Dallas a nonprofit organization?",
a: "Yes. We are a volunteer-run nonprofit community organization powered entirely by families who care about keeping our culture alive in Dallas.",
},
];