diff --git a/src/app/page.tsx b/src/app/page.tsx index aa17cb2..cc59739 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,10 +3,17 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll"; -import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import MediaAbout from "@/components/sections/about/MediaAbout"; +import FeatureBorderGlow from "@/components/sections/feature/FeatureBorderGlow"; +import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; +import TeamCardFive from "@/components/sections/team/TeamCardFive"; +import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; +import FaqSplitText from "@/components/sections/faq/FaqSplitText"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Zap, Award, Star } from "lucide-react"; +import { Zap, Award, Star, Sparkles, CheckCircle, Users, MessageSquare, HelpCircle, Mail } from "lucide-react"; export default function LandingPage() { return ( @@ -29,6 +36,13 @@ export default function LandingPage() { navItems={[ { name: "Hero", id: "hero" }, { name: "About", id: "about" }, + { name: "Features", id: "features" }, + { name: "Products", id: "products" }, + { name: "Metrics", id: "metrics" }, + { name: "Team", id: "team" }, + { name: "Testimonials", id: "testimonials" }, + { name: "FAQ", id: "faq" }, + { name: "Contact", id: "contact" }, { name: "Social Proof", id: "social-proof" }, { name: "Footer", id: "footer" }, ]} @@ -45,29 +59,231 @@ export default function LandingPage() { tag="Next Generation Tech" tagIcon={Zap} buttons={[ - { text: "Explore Solutions", href: "#about" }, - { text: "Get Started", href: "#social-proof" }, + { text: "Explore Solutions", href: "#features" }, + { text: "Get Started", href: "#contact" }, ]} background={{ variant: "plain" }} /> - {/* About - Inline Image Split Text */} + {/* About - Media About */}