From 6b41c8e0aa1205dc8ae56bb79beeffcd6233386e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 18:51:22 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 430 +++++++++++++++++++---------------------------- 1 file changed, 169 insertions(+), 261 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7c66d15..4a913f3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,30 +2,32 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; -import AboutMetric from "@/components/sections/about/AboutMetric"; -import ProductCardThree from "@/components/sections/product/ProductCardThree"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; -import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroLogo from "@/components/sections/hero/HeroLogo"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve"; +import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; +import TeamCardOne from "@/components/sections/team/TeamCardOne"; +import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne"; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Zap, Shield, BarChart3, Brain, Lock, Network, Users, Globe, Building2, Database, Clock, TrendingUp, CheckCircle, Award } from "lucide-react"; +import { Sparkles, CheckCircle, Users, MessageSquare, HelpCircle } from "lucide-react"; -export default function HomePage() { +export default function Home() { const navItems = [ { name: "Platform", id: "features" }, { name: "Capabilities", id: "about" }, { name: "Solutions", id: "product" }, - { name: "Resources", id: "faq" }, - { name: "Contact", id: "contact" }, + { name: "Pricing", id: "/pricing" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { items: [ - { label: "Platform", href: "#features" }, - { label: "Features", href: "#features" }, + { label: "Platform", href: "features" }, + { label: "Features", href: "features" }, { label: "Pricing", href: "/pricing" }, { label: "Security", href: "#" }, ], @@ -33,7 +35,7 @@ export default function HomePage() { { items: [ { label: "Company", href: "#" }, - { label: "About", href: "/about" }, + { label: "About", href: "about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, ], @@ -58,288 +60,194 @@ export default function HomePage() { return ( -
- +
-
- + +
+ +
+ -
- -
- -
- -
- +
+ +
+ +
+ +
+
-
- -
- -
- + +
+ +
+ +
+ +
+
@@ -351,4 +259,4 @@ export default function HomePage() {
); -} \ No newline at end of file +}