--- // src/components/AkcijePanel.astro import Button from './Button.astro'; interface Props { tip: 'dashboard' | 'radni-nalog' | 'stroj' | 'vlasnik' | 'vozilo'; // DODANO: vozilo podaci: any; } const { tip, podaci } = Astro.props; // Pomoćna funkcija za formatiranje datuma const formatDate = (date: string) => new Date(date).toLocaleDateString('hr-HR', { day: '2-digit', month: '2-digit', year: 'numeric' }); ---