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 */}
-
+ {/* Features - Feature Border Glow */} +
+ +
+ + {/* Products - Product Card One */} +
+ +
+ + {/* Metrics - Metric Card One */} +
+ +
+ + {/* Team - Team Card Five */} +
+ +
+ + {/* Testimonials - Testimonial Card Six */} +
+ +
+ + {/* FAQ - FAQ Split Text */} +
+ +
+ + {/* Contact - Contact Center */} +
+ +
+ {/* Social Proof - Social Proof One */}
@@ -99,16 +313,16 @@ export default function LandingPage() { columns={[ { title: "Solutions", items: [ - { label: "Enterprise Solutions", href: "#hero" }, - { label: "Technology Stack", href: "#about" }, + { label: "Enterprise Solutions", href: "#products" }, + { label: "Technology Stack", href: "#features" }, { label: "Integration Services", href: "#" }, - { label: "Support", href: "#" }, + { label: "Support", href: "#contact" }, ], }, { title: "Company", items: [ { label: "About Us", href: "#about" }, - { label: "Careers", href: "#" }, + { label: "Team", href: "#team" }, { label: "News", href: "#" }, { label: "Press", href: "#" }, ], @@ -116,8 +330,8 @@ export default function LandingPage() { { title: "Resources", items: [ { label: "Documentation", href: "#" }, - { label: "Case Studies", href: "#" }, - { label: "Contact", href: "#footer" }, + { label: "Case Studies", href: "#testimonials" }, + { label: "Contact", href: "#contact" }, { label: "Partners", href: "#social-proof" }, ], },