Update src/app/page.tsx
This commit is contained in:
@@ -10,9 +10,8 @@ import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import { MapPin, Coffee, Dumbbell, Star, Calendar } from "lucide-react";
|
||||
import { MapPin, Star, Calendar } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -63,14 +62,18 @@ export default function LandingPage() {
|
||||
{ title: "Conectado", description: "Junto a estación de tren", icon: MapPin }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/map-concept-with-pins_23-2148705609.jpg"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwentyThree
|
||||
title="Servicios del Hotel"
|
||||
description="Disfrute de nuestras instalaciones diseñadas para su máximo confort."
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{ id: "1", title: "Desayuno Buffet", tags: ["Calidad", "Local"], imageSrc: "http://img.b2bpic.net/free-photo/high-angle-breakfast-milk_23-2148858499.jpg" },
|
||||
{ id: "2", title: "Gimnasio Moderno", tags: ["Fitness", "Salud"], imageSrc: "http://img.b2bpic.net/free-photo/portrait-sporty-couple-doing-stretching-exercises-park-before-training_23-2148038202.jpg" }
|
||||
@@ -81,7 +84,10 @@ export default function LandingPage() {
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardEight
|
||||
title="Habitaciones"
|
||||
description="Elige la estancia que mejor se adapte a tus necesidades."
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{ id: "estandar", badge: "Popular", price: "desde 120€", subtitle: "Confort y funcionalidad", features: ["Wi-Fi Alta Velocidad", "Climatización", "Baño Privado"], buttons: [{ text: "Reservar" }] },
|
||||
{ id: "premium", badge: "Vistas", price: "desde 180€", subtitle: "Experiencia superior", features: ["Vistas al río", "Desayuno incluido", "Check-out tardío"], buttons: [{ text: "Reservar" }] }
|
||||
@@ -92,8 +98,11 @@ export default function LandingPage() {
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
title="Nuestra Excelencia"
|
||||
description="Calidad garantizada avalada por nuestros huéspedes."
|
||||
gridVariant="bento-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{ id: "1", value: "4.4", title: "Valoración Google", description: "Basado en reseñas reales", icon: Star },
|
||||
{ id: "2", value: "15", title: "Minutos al aeropuerto", description: "Excelente conexión", icon: Calendar }
|
||||
@@ -104,7 +113,9 @@ export default function LandingPage() {
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialCardTen
|
||||
title="Opiniones de Huéspedes"
|
||||
description="Lo que dicen quienes nos han visitado."
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", title: "Excelente estancia", quote: "La ubicación es insuperable para visitar los museos de Málaga.", name: "Carmen R.", role: "Viajera" }
|
||||
]}
|
||||
@@ -115,6 +126,7 @@ export default function LandingPage() {
|
||||
<ContactSplitForm
|
||||
title="¿Necesitas ayuda?"
|
||||
description="Estamos a tu disposición para cualquier duda o reserva especial."
|
||||
useInvertedBackground={true}
|
||||
inputs={[
|
||||
{ name: "nombre", type: "text", placeholder: "Tu nombre" },
|
||||
{ name: "email", type: "email", placeholder: "Tu email" }
|
||||
@@ -130,6 +142,7 @@ export default function LandingPage() {
|
||||
{ title: "Información", items: [{ label: "Ubicación" }, { label: "Privacidad" }] }
|
||||
]}
|
||||
bottomLeftText="© 2025 Hotel Guadalmedina"
|
||||
bottomRightText="Políticas de privacidad"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user