import { FeaturedEventCard, MiniEventCard } from "@/components/EventCard"; import { featuredEvents, miniEvents } from "@/lib/data"; export const metadata = { title: "Events — UP Parivaar Dallas" }; export default function EventsPage() { return ( <>
Events

Worth driving across the metroplex for

Not events. Experiences — where food, music, culture and family come together.

{miniEvents.map((e) => ( ))}
); }