diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index f278ff5..a129d38 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -14,7 +14,6 @@ export default function AboutPage() {
{ name: "Home", id: "/" },
{ name: "Features", id: "/features" },
{ name: "About", id: "/about" },
- { name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }
];
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 57e6317..2bfd7a6 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -10,6 +10,9 @@ import { LineChart, ShieldCheck, Globe, Lightbulb, Twitter, Linkedin, Github } f
export default function ContactPage() {
const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Features", id: "/features" },
+ { name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
];
diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx
index 37ef682..5ec65e7 100644
--- a/src/app/features/page.tsx
+++ b/src/app/features/page.tsx
@@ -13,7 +13,9 @@ import { LineChart, ShieldCheck, Globe, Lightbulb, Twitter, Linkedin, Github } f
export default function FeaturesPage() {
const navItems = [
{ name: "Home", id: "/" },
- { name: "Features", id: "/features" }
+ { name: "Features", id: "/features" },
+ { name: "About", id: "/about" },
+ { name: "Contact", id: "/contact" }
];
return (
@@ -33,7 +35,7 @@ export default function FeaturesPage() {
@@ -87,8 +89,8 @@ export default function FeaturesPage() {
text="Ready to leverage these powerful features for your business? Connect with us to get started."
animationType="entrance-slide"
buttons={[
- { text: "Request a Consultation", href: "#contact" },
- { text: "See More Solutions", href: "#features" }
+ { text: "Request a Consultation", href: "/contact" },
+ { text: "See More Solutions", href: "/features" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
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() {
-
@@ -147,8 +162,8 @@ export default function HomePage() {
text="Ready to transform your business with intelligent software? Let's build the future, together."
animationType="entrance-slide"
buttons={[
- { text: "Get in Touch", href: "#contact" },
- { text: "Schedule a Consultation", href: "#contact" }
+ { text: "Get in Touch", href: "/contact" },
+ { text: "Schedule a Consultation", href: "/contact" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}