diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx index 22b3044..10ea5d5 100644 --- a/src/app/admin/page.tsx +++ b/src/app/admin/page.tsx @@ -8,7 +8,7 @@ type Slide = { id: number; title: string; subtitle: string; image_url: string | type Room = { id: number; name: string; description: string; price: string; photos: string[]; featured_photo: string | null; active: boolean; sort_order: number; amenity_ids?: number[] }; type CalendarEvent = { id: number; date: string; title: string; type: string; color: string; description: string | null; active: boolean }; type SocialEvent = { id: number; name: string; description: string; price: string | null; date: string | null; photos: string[]; featured_photo: string | null; active: boolean; sort_order: number }; -type MenuItem = { id: number; category: string; name: string; description: string; price: string; is_daily_special: boolean; active: boolean; sort_order: number }; +type MenuItem = { id: number; category: string; name: string; description: string; price: string; is_daily_special: boolean; active: boolean; sort_order: number; photos: string[]; featured_photo: string | null }; type Place = { id: number; name: string; description: string; photos: string[]; featured_photo: string | null; distance_km: string; visit_time: string; suggestion: string; active: boolean; sort_order: number }; type Review = { id: number; author_name: string; author_email: string | null; rating: number; text: string; approved: boolean }; type FooterConfig = { logo: string; favicon: string; tagline: string; facebook_url: string; instagram_url: string; whatsapp_url: string; address: string; phone: string; email: string }; @@ -1408,7 +1408,7 @@ function MenuSection({ items, setItems, images, onToast }: any) { return (