diff --git a/src/app/page.tsx b/src/app/page.tsx
index 4cc6772..28f2ff4 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {