diff --git a/src/app/page.tsx b/src/app/page.tsx
index 1082321..4f8017b 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
-import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
+import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
@@ -11,12 +11,14 @@ import FaqBase from "@/components/sections/faq/FaqBase";
import ContactText from "@/components/sections/contact/ContactText";
import FooterCard from "@/components/sections/footer/FooterCard";
import Link from "next/link";
-import { LineChart, ShieldCheck, Globe, Lightbulb, Twitter, Linkedin, Github } from "lucide-react";
+import { LineChart, ShieldCheck, Globe, Lightbulb, Twitter, Linkedin, Github, Hexagon, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send } from "lucide-react";
export default function HomePage() {
const navItems = [
{ name: "Home", id: "/" },
- { name: "Features", id: "/features" }
+ { name: "Features", id: "/features" },
+ { name: "About", id: "/about" },
+ { name: "Contact", id: "/contact" }
];
return (
@@ -36,31 +38,44 @@ export default function HomePage() {