import { ArrowRight, MapPin } from "lucide-react"; import Link from "next/link"; interface MeetupData { id?: string; month?: string; day?: string; title?: string; location?: string; time?: string; link?: string; } interface HeroSectionProps { meetup?: MeetupData; } export function HeroSection({ meetup }: HeroSectionProps) { const month = meetup?.month ?? "TBD"; const day = meetup?.day ?? "--"; const title = meetup?.title ?? "Next Gathering"; const location = meetup?.location ?? "Brussels, BE"; const time = meetup?.time ?? "19:00"; const eventHref = meetup?.id ? `/events/${meetup.id}` : "#meetup"; return (
Antwerp, Belgium

Belgium's Monthly
Bitcoin Meetups

A sovereign space for education, technical discussion, and community. No hype, just signal.

{month} {day}

{title}

{location} ยท {time}

More info
); }