export type GalleryItem = { id: string; title: string; description: string; image: string; category: string; }; export const GALLERY_ITEMS: GalleryItem[] = [];