diff --git a/src/app/page.tsx b/src/app/page.tsx index d234217..9cc393f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,6 +16,16 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni import { CheckCircle, DollarSign, FileText, LineChart, Recycle, Sparkles, TrendingUp, Trophy } from "lucide-react"; export default function LandingPage() { + const updatedNavItems = [ + { name: "Home", id: "/" }, + { name: "Features", id: "#features" }, + { name: "How It Works", id: "#how-it-works" }, + { name: "Impact", id: "#metrics" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "/contact" }, + ]; + return (