interface LocationMapProps { latitude: number; longitude: number; height?: string; zoom?: number; } export function LocationMap({ latitude, longitude, height = '250px', zoom = 17, }: LocationMapProps) { const src = `https://maps.google.com/maps?q=${latitude},${longitude}&z=${zoom}&t=k&output=embed`; return (