Skip to content

Commit

Permalink
Merge pull request #31 from iic2154-uc-cl/fix/post-in-map
Browse files Browse the repository at this point in the history
Fix/post in map
  • Loading branch information
gustfernandez authored Nov 7, 2024
2 parents 9e7de2e + d1901cc commit afbdf64
Showing 1 changed file with 37 additions and 7 deletions.
44 changes: 37 additions & 7 deletions src/components/lugares.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ const lugares = [
horario_apertura: '10:00 AM',
horario_cierre: '10:00 PM',
imagen: 'https://www.castelloninformacion.com/wp-content/uploads/2024/01/festival-cometas.jpg',
rating: 's/n'
rating: 'n/a',
reseñas: []
},
{
id: 7,
Expand All @@ -142,7 +143,12 @@ const lugares = [
horario_apertura: '09:00 AM',
horario_cierre: '05:00 PM',
imagen: 'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQLvV61De4OClkKAKRsigpqN1L1se-qG6IagQ&s',
rating: 4.6
rating: 4.6,
reseñas: [
{ autor: 'María Silva', comentario: 'Muy interesante y entretenida. Excelente comida.', puntuacion: 4.5 },
{ autor: 'Pedro Rojas', comentario: 'Gran variedad de productos locales. Muy recomendado.', puntuacion: 5 },
{ autor: 'Luisa Pérez', comentario: 'Un evento muy bonito y bien organizado. Volvería.', puntuacion: 4.3 }
]
},

// GASTRONOMIA
Expand All @@ -161,7 +167,13 @@ const lugares = [
horario_apertura: '12:00 PM',
horario_cierre: '10:00 PM',
imagen: 'https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg',
rating: 4.3
rating: 4.3,
reseñas: [
{ autor: 'Andrés Soto', comentario: 'Excelente comida y ambiente. Muy recomendado.', puntuacion: 4.5 },
{ autor: 'Carmen Díaz', comentario: 'Platos deliciosos y atención de primera. Volveré.', puntuacion: 4.0 },
{ autor: 'Javier Torres', comentario: 'Muy buena comida y precios razonables. Volvería.', puntuacion: 4.4 }
]

},
{
id: 9,
Expand All @@ -178,7 +190,11 @@ const lugares = [
horario_apertura: '10:00 AM',
horario_cierre: '08:00 PM',
imagen: 'https://ralfvanveen.com/wp-content/uploads/2021/06/Placeholder-_-Glossary.svg',
rating: 4.7
rating: 4.7,
reseñas: [
{ autor: 'María Pérez', comentario: 'Comida deliciosa y atención amable. Muy recomendado.', puntuacion: 4.8 },
{ autor: 'Pedro Muñoz', comentario: 'Excelente comida casera y precios razonables. Volveré.', puntuacion: 4.6 }
]
},

// SERVICIOS COMUNITARIOS
Expand Down Expand Up @@ -257,7 +273,12 @@ const lugares = [
horario_apertura: '08:00 AM',
horario_cierre: '06:00 PM',
imagen: 'https://www.diarioelcentro.cl/wp-content/uploads/2022/12/Altos-de-Lircay-2.jpg',
rating: 4.9
rating: 4.9,
reseñas: [
{ autor: 'Marcela Soto', comentario: 'Hermoso parque con rutas de senderismo increíbles.', puntuacion: 5 },
{ autor: 'Juan Torres', comentario: 'Un lugar maravilloso para disfrutar de la naturaleza.', puntuacion: 4.8 },
{ autor: 'Andrea Pérez', comentario: 'Excelente lugar para hacer trekking y disfrutar de la naturaleza.', puntuacion: 4.9 }
]
},
{
id: 15,
Expand Down Expand Up @@ -302,7 +323,12 @@ const lugares = [
horario_apertura: '09:00 AM',
horario_cierre: '09:00 PM',
imagen: 'https://termaschillan.cl/wp-content/uploads/2022/10/puerto_htch_jun2019-514-Edit-1024x683.jpg',
rating: 5
rating: 5,
reseñas: [
{ autor: 'Cristina Torres', comentario: 'Un lugar increíble para relajarse y disfrutar de la naturaleza.', puntuacion: 5 },
{ autor: 'Pedro Soto', comentario: 'Excelente servicio y aguas termales muy relajantes.', puntuacion: 5 },
{ autor: 'María Pérez', comentario: 'Muy recomendado para un fin de semana de relajo.', puntuacion: 5 }
]
},
{
id: 18,
Expand Down Expand Up @@ -347,7 +373,11 @@ const lugares = [
horario_apertura: '24 horas',
horario_cierre: '24 horas',
imagen :'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRW7MxUQCL7EPugV5e4d23OE0IbIK6aC3z1TA&s',
rating: 5
rating: 5,
reseñas: [
{ autor: 'Juan Pérez', comentario: 'Un lugar increíble para pescar y disfrutar de la naturaleza.', puntuacion: 5 },
{ autor: 'Carla Soto', comentario: 'Hermoso río con paisajes impresionantes. Muy recomendado.', puntuacion: 5 }
]
}
];

Expand Down

0 comments on commit afbdf64

Please sign in to comment.