export type RoomCategory = { id: string; label: string; count: number; }; export type RoomItem = { id: number; title: string; category: string; img: string; }; export const categorias: RoomCategory[] = [ { id: "todos", label: "Todos", count: 33 }, { id: "bano", label: "Baño", count: 10 }, { id: "cocina", label: "Cocina", count: 2 }, { id: "comedor", label: "Comedor", count: 3 }, { id: "dormitorio", label: "Dormitorio", count: 5 }, { id: "espacio_abierto", label: "Espacio abierto", count: 7 }, { id: "sala", label: "Sala de estar", count: 1 }, { id: "terraza", label: "Terraza", count: 5 }, ]; export const habitaciones: RoomItem[] = [ { id: 1, title: "Refugio de Spa Contemporáneo", category: "bano", img: new URL( "../assets/imagens-default-room/bathroom/bathroom1.png", import.meta.url, ).href, }, { id: 2, title: "Oasis de Mármol Sereno", category: "bano", img: new URL( "../assets/imagens-default-room/bathroom/bathroom2.png", import.meta.url, ).href, }, { id: 3, title: "Baño Zen de Luz Natural", category: "bano", img: new URL( "../assets/imagens-default-room/bathroom/bathroom3.png", import.meta.url, ).href, }, { id: 4, title: "Retiro de Spa Blanco", category: "bano", img: new URL( "../assets/imagens-default-room/bathroom/bathroom4.png", import.meta.url, ).href, }, { id: 5, title: "Lavabo de Encanto Minimalista", category: "bano", img: new URL( "../assets/imagens-default-room/bathroom/bathroom5.png", import.meta.url, ).href, }, { id: 6, title: "Baño Escandinavo Refinado", category: "bano", img: new URL( "../assets/imagens-default-room/bathroom/bathroom6.png", import.meta.url, ).href, }, { id: 7, title: "Santuario de Mármol Pálido", category: "bano", img: new URL( "../assets/imagens-default-room/bathroom/bathroom7.png", import.meta.url, ).href, }, { id: 8, title: "Oasis Sereno de Blanco y Luz", category: "bano", img: new URL( "../assets/imagens-default-room/bathroom/bathroom8.png", import.meta.url, ).href, }, { id: 9, title: "Retiro de Mármol y Madera", category: "bano", img: new URL( "../assets/imagens-default-room/bathroom/bathroom9.png", import.meta.url, ).href, }, { id: 10, title: "Baño de Luz Cálida", category: "bano", img: new URL( "../assets/imagens-default-room/bathroom/bathroom10.png", import.meta.url, ).href, }, { id: 11, title: "Cocina Gourmet de Autor", category: "cocina", img: new URL( "../assets/imagens-default-room/Kitchen/kitchen1.png", import.meta.url, ).href, }, { id: 12, title: "Cocina Contemporánea Urbana", category: "cocina", img: new URL( "../assets/imagens-default-room/Kitchen/kitchen2.png", import.meta.url, ).href, }, { id: 13, title: "Comedor de Gala Moderno", category: "comedor", img: new URL( "../assets/imagens-default-room/dining room/diningroom1.png", import.meta.url, ).href, }, { id: 14, title: "Comedor Clásico de Lujo", category: "comedor", img: new URL( "../assets/imagens-default-room/dining room/diningroom2.png", import.meta.url, ).href, }, { id: 15, title: "Sala de Banquetes Minimalista", category: "comedor", img: new URL( "../assets/imagens-default-room/dining room/diningroom3.png", import.meta.url, ).href, }, { id: 16, title: "Suite del Amanecer", category: "dormitorio", img: new URL( "../assets/imagens-default-room/bedroom/bedroom1.png", import.meta.url, ).href, }, { id: 17, title: "Dormitorio de Seda", category: "dormitorio", img: new URL( "../assets/imagens-default-room/bedroom/bedroom2.png", import.meta.url, ).href, }, { id: 18, title: "Alcoba Tranquila", category: "dormitorio", img: new URL( "../assets/imagens-default-room/bedroom/bedroom3.png", import.meta.url, ).href, }, { id: 19, title: "Retiro de Noche Azul", category: "dormitorio", img: new URL( "../assets/imagens-default-room/bedroom/bedroom4.png", import.meta.url, ).href, }, { id: 20, title: "Quinta Esencia del Descanso", category: "dormitorio", img: new URL( "../assets/imagens-default-room/bedroom/bedroom5.png", import.meta.url, ).href, }, { id: 21, title: "Salón Contemporáneo Sereno", category: "sala", img: new URL( "../assets/imagens-default-room/living room/livingroom1.png", import.meta.url, ).href, }, { id: 22, title: "Loft de Claridad", category: "espacio_abierto", img: new URL( "../assets/imagens-default-room/open space/openspace1.png", import.meta.url, ).href, }, { id: 23, title: "Galería Abierta Suave", category: "espacio_abierto", img: new URL( "../assets/imagens-default-room/open space/openspace2.png", import.meta.url, ).href, }, { id: 24, title: "Ático de Luz Serena", category: "espacio_abierto", img: new URL( "../assets/imagens-default-room/open space/openspace3.png", import.meta.url, ).href, }, { id: 25, title: "Salón Multifuncional Luminoso", category: "espacio_abierto", img: new URL( "../assets/imagens-default-room/open space/openspace4.png", import.meta.url, ).href, }, { id: 26, title: "Atrio de Cielo Blanco", category: "espacio_abierto", img: new URL( "../assets/imagens-default-room/open space/openspace5.png", import.meta.url, ).href, }, { id: 27, title: "Estudio de Altura", category: "espacio_abierto", img: new URL( "../assets/imagens-default-room/open space/openspace6.png", import.meta.url, ).href, }, { id: 28, title: "Retiro Etéreo", category: "espacio_abierto", img: new URL( "../assets/imagens-default-room/open space/openspace7.png", import.meta.url, ).href, }, { id: 29, title: "Terraza Nocturna de Ciudad", category: "terraza", img: new URL( "../assets/imagens-default-room/terrace/terrace1.png", import.meta.url, ).href, }, { id: 30, title: "Terraza Contemporánea", category: "terraza", img: new URL( "../assets/imagens-default-room/terrace/terrace2.png", import.meta.url, ).href, }, { id: 31, title: "Terraza de Rooftop Chic", category: "terraza", img: new URL( "../assets/imagens-default-room/terrace/terrace3.png", import.meta.url, ).href, }, { id: 32, title: "Terraza de Diseño Iluminado", category: "terraza", img: new URL( "../assets/imagens-default-room/terrace/terrace4.png", import.meta.url, ).href, }, { id: 33, title: "Terraza de Encanto Nocturno", category: "terraza", img: new URL( "../assets/imagens-default-room/terrace/terrace5.png", import.meta.url, ).href, }, ];