Update src/app/page.tsx

This commit is contained in:
2026-03-05 20:43:37 +00:00
parent ee43e1ddca
commit fc5bfa686c

View File

@@ -8,7 +8,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia
import ContactText from '@/components/sections/contact/ContactText';
import FooterCard from '@/components/sections/footer/FooterCard';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Clock, Instagram, MapPin, Phone, Scissors } from 'lucide-react';
import { Clock, Instagram, MapPin, Phone, Scissors, Wifi, CreditCard, LinkIcon, Star } from 'lucide-react';
export default function LandingPage() {
return (
@@ -30,8 +30,7 @@ export default function LandingPage() {
{ name: "Servicios", id: "services" },
{ name: "Ubicación", id: "location" },
{ name: "Reseñas", id: "reviews" },
{ name: "Contacto", id: "contact" },
{ name: "Instagram", id: "https://instagram.com/vrhairsalon" }
{ name: "Contacto", id: "contact" }
]}
brandName="VR Hair Salon"
bottomLeftText="Bogotá, Colombia"
@@ -63,8 +62,8 @@ export default function LandingPage() {
tagIcon={MapPin}
tagAnimation="slide-up"
title="Visítanos en Bogotá"
description="Cra. 53a #122 - 25 3, Bogotá"
subdescription="¡Abierto ahora!"
description="Cra. 53a #122 - 25 3, Bogotá, Colombia"
subdescription="Jueves a Miércoles: 7:30 a.m. - 7:00 p.m. | Sábado: 8:00 a.m. - 7:00 p.m. | Domingo: Cerrado"
icon={Clock}
imageSrc="http://img.b2bpic.net/free-photo/hairdresser-cut-hair-her-client-hair-salon_1157-27201.jpg?_wi=2"
imageAlt="Ubicación de VR Hair Salon"
@@ -94,7 +93,7 @@ export default function LandingPage() {
},
{
id: 4,
title: "Peinados Especiales", description: "Diseño de peinados para eventos especiales y ocasiones importantes", imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-cut-hair-her-client-hair-salon_1157-27201.jpg?_wi=6", imageAlt: "Peinados especiales"
title: "Sanitario y Wi-Fi Gratis", description: "Instalaciones limpias y modernas con conexión a internet gratis para tu comodidad", imageSrc: "http://img.b2bpic.net/free-photo/hairdresser-cut-hair-her-client-hair-salon_1157-27201.jpg?_wi=6", imageAlt: "Comodidades"
}
]}
textboxLayout="default"
@@ -122,11 +121,11 @@ export default function LandingPage() {
<div id="info-section" data-section="info-section">
<ContactText
text="¿Listo para transformar tu estilo? Contáctanos hoy y agenda tu cita con nuestros expertos en peluquería."
text="¿Listo para transformar tu estilo? Contáctanos hoy y agenda tu cita con nuestros expertos en peluquería. Aceptamos tarjetas de crédito y débito."
animationType="entrance-slide"
buttons={[
{ text: "Llamar: 316 6250743", href: "tel:+573166250743" },
{ text: "Seguir en Instagram", href: "https://instagram.com/vrhairsalon" }
{ text: "Seguir en Instagram", href: "https://www.instagram.com/vrhairsalon/" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -138,11 +137,13 @@ export default function LandingPage() {
logoText="VR Hair Salon"
copyrightText="© 2025 VR Hair Salon | Cra. 53a #122-25 3, Bogotá | Todos los derechos reservados"
socialLinks={[
{ icon: Instagram, href: "https://instagram.com/vrhairsalon", ariaLabel: "Instagram de VR Hair Salon" },
{ icon: Phone, href: "tel:+573166250743", ariaLabel: "Llamar a VR Hair Salon" }
{ icon: Instagram, href: "https://www.instagram.com/vrhairsalon/", ariaLabel: "Instagram de VR Hair Salon" },
{ icon: Phone, href: "tel:+573166250743", ariaLabel: "Llamar a VR Hair Salon" },
{ icon: LinkIcon, href: "https://linktr.ee/johanhair76", ariaLabel: "Enlaces en linktree" },
{ icon: MapPin, href: "https://maps.app.goo.gl/NaQxHBkNnxZ9dSCX8", ariaLabel: "Ver ubicación en Google Maps" }
]}
/>
</div>
</ThemeProvider>
);
}
}