--- // Age verification component for ticket purchases export interface Props { minimumAge?: number; eventTitle?: string; onVerified?: string; // Callback function name } const { minimumAge = 18, eventTitle = "this event", onVerified = "onAgeVerified" } = Astro.props; ---