Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9d6d2ad262 | |||
| 70d45d0129 | |||
| 6791d92062 | |||
| fd21d97341 | |||
| 26430ca1c8 |
1417
src/app/layout.tsx
1417
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -6,9 +6,10 @@ import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { Phone } from 'lucide-react';
|
||||
import { Phone, Star } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -31,6 +32,7 @@ export default function LandingPage() {
|
||||
{ name: "Productos", id: "products" },
|
||||
{ name: "Por Qué Nosotros", id: "features" },
|
||||
{ name: "Testimonios", id: "testimonials" },
|
||||
{ name: "Reseñas de Clientes", id: "reviews" },
|
||||
{ name: "Contacto", id: "contact" }
|
||||
]}
|
||||
brandName="JANAM MUEBLES"
|
||||
@@ -44,8 +46,8 @@ export default function LandingPage() {
|
||||
logoText="JANAM MUEBLES"
|
||||
description="Muebles de calidad para tu hogar. Entrega rápida, precios competitivos y servicio al cliente excepcional."
|
||||
buttons={[
|
||||
{ text: "📞 Llamar Ahora", href: "tel:+18295960900" },
|
||||
{ text: "💬 WhatsApp", href: "https://wa.me/18295960900" }
|
||||
{ text: "Explorar Catálogo", href: "#products" },
|
||||
{ text: "📞 Llamar Ahora", href: "tel:+18295960900" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/living-room-with-modern-beautiful-decoration_181624-44716.jpg?_wi=1"
|
||||
imageAlt="Interior de tienda de muebles moderna"
|
||||
@@ -150,6 +152,43 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="reviews" data-section="reviews">
|
||||
<TestimonialCardSix
|
||||
title="Reseñas de Nuestros Clientes"
|
||||
description="Descubre lo que nuestros clientes satisfechos dicen sobre nuestros productos y servicio."
|
||||
tag="Reseñas"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "María García", handle: "Cliente desde 2020", testimonial: "Los mejores muebles que he comprado. Excelente calidad y el servicio de entrega fue puntual. ¡Recomendado!"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Juan Martínez", handle: "Cliente desde 2019", testimonial: "Muy satisfecho con mi compra. El sofá que elegí es cómodo y la calidad es superior. El equipo fue muy atento."
|
||||
},
|
||||
{
|
||||
id: "3", name: "Rosa Peña", handle: "Cliente desde 2021", testimonial: "Busqué en muchos lugares y JANAM MUEBLES tiene los mejores precios sin sacrificar la calidad. Perfecto."
|
||||
},
|
||||
{
|
||||
id: "4", name: "Carlos López", handle: "Cliente desde 2022", testimonial: "Entrega a tiempo, producto en perfecto estado. El comedor que compré es hermoso y muy resistente."
|
||||
},
|
||||
{
|
||||
id: "5", name: "Ana Rodríguez", handle: "Cliente desde 2020", testimonial: "La cama matrimonial que compré es cómoda y elegante. Perfecto para mi habitación nueva."
|
||||
},
|
||||
{
|
||||
id: "6", name: "Roberto Díaz", handle: "Cliente desde 2021", testimonial: "Atención personalizada de excelencia. Me ayudaron a elegir los muebles perfectos para mi espacio."
|
||||
},
|
||||
{
|
||||
id: "7", name: "Carmen Ruiz", handle: "Cliente desde 2022", testimonial: "El servicio al cliente es impecable. Disponibles 24 horas para responder mis preguntas."
|
||||
},
|
||||
{
|
||||
id: "8", name: "Miguel Torres", handle: "Cliente desde 2023", testimonial: "Gran variedad de estilos y colores. Encontré exactamente lo que buscaba para mi sala."
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactFaq
|
||||
faqs={[
|
||||
@@ -214,4 +253,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user