Update src/app/page.tsx
This commit is contained in:
@@ -11,14 +11,15 @@ import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCar
|
||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Sparkles, CheckCircle, Shield, Wind, Door, Hammer } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Inicio", id: "/" },
|
||||
{ name: "Servicios", id: "/servicios" },
|
||||
{ name: "Trabajos", id: "projects" },
|
||||
{ name: "Nosotros", id: "about" },
|
||||
{ name: "Contacto", id: "contact" },
|
||||
{ name: "Servicios", id: "#services" },
|
||||
{ name: "Trabajos", id: "#projects" },
|
||||
{ name: "Nosotros", id: "#why-us" },
|
||||
{ name: "Contacto", id: "#contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -39,7 +40,7 @@ export default function HomePage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Solicitar presupuesto", href: "contact"}}
|
||||
text: "Solicitar presupuesto", href: "#contact"}}
|
||||
brandName="Cerramientos Walter"
|
||||
/>
|
||||
</div>
|
||||
@@ -85,6 +86,7 @@ export default function HomePage() {
|
||||
title="Servicios Principales"
|
||||
description="Soluciones completas en cerramientos y estructuras metálicas para tu hogar, local o proyecto"
|
||||
tag="Especialidad"
|
||||
tagIcon={Sparkles}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
@@ -115,6 +117,7 @@ export default function HomePage() {
|
||||
<div id="why-us" data-section="why-us">
|
||||
<TextAbout
|
||||
tag="Ventajas"
|
||||
tagIcon={CheckCircle}
|
||||
title="Por qué elegirnos: Atención rápida, trabajos prolijos, materiales de calidad, presupuestos claros, instalación profesional y soluciones a medida"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -124,7 +127,7 @@ export default function HomePage() {
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
title="Testimonios de Clientes"
|
||||
description="Historias reales de clientes satisfechos"
|
||||
description="Historias reales de clientes satisfechos con nuestro trabajo"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
@@ -144,13 +147,13 @@ export default function HomePage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Projects Section */}
|
||||
{/* Projects Gallery Section */}
|
||||
<div id="projects" data-section="projects">
|
||||
<ProductCardOne
|
||||
title="Proyectos Realizados"
|
||||
description="Galería de trabajos instalados con acabado profesional"
|
||||
description="Galería de trabajos instalados con acabado profesional. Descubre nuestras soluciones en acción."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
animationType="scale-rotate"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="bento-grid"
|
||||
products={[
|
||||
@@ -174,6 +177,7 @@ export default function HomePage() {
|
||||
<div id="final-cta" data-section="final-cta">
|
||||
<TextAbout
|
||||
tag="Próximo paso"
|
||||
tagIcon={Hammer}
|
||||
title="¿Listo para tu proyecto? Solicita tu presupuesto sin compromiso hoy mismo"
|
||||
buttons={[
|
||||
{ text: "Solicitar presupuesto", href: "#contact" },
|
||||
@@ -209,17 +213,17 @@ export default function HomePage() {
|
||||
{
|
||||
title: "Navegación", items: [
|
||||
{ label: "Inicio", href: "/" },
|
||||
{ label: "Servicios", href: "/servicios" },
|
||||
{ label: "Trabajos", href: "/trabajos" },
|
||||
{ label: "Nosotros", href: "/nosotros" },
|
||||
{ label: "Servicios", href: "#services" },
|
||||
{ label: "Trabajos", href: "#projects" },
|
||||
{ label: "Nosotros", href: "#why-us" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Servicios", items: [
|
||||
{ label: "Cerramientos", href: "/servicios#cerramientos" },
|
||||
{ label: "Ventanas", href: "/servicios#ventanas" },
|
||||
{ label: "Rejas", href: "/servicios#rejas" },
|
||||
{ label: "Mosquiteros", href: "/servicios#mosquiteros" },
|
||||
{ label: "Cerramientos", href: "#services" },
|
||||
{ label: "Ventanas", href: "#services" },
|
||||
{ label: "Rejas", href: "#services" },
|
||||
{ label: "Mosquiteros", href: "#services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user