From 5eeaf52ff88f8657dc2eb97854bb1b60f7192108 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 18:51:21 +0000 Subject: [PATCH 1/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 80 +++++++++++++++++++++++----------------- 1 file changed, 46 insertions(+), 34 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8e43078..a9b94ff 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,27 +2,27 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; -import ContactText from "@/components/sections/contact/ContactText"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +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 { Award, HelpCircle } from "lucide-react"; +import { Award, HelpCircle, MessageSquare } from "lucide-react"; export default function ContactPage() { 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: "#" }, ], @@ -30,7 +30,7 @@ export default function ContactPage() { { items: [ { label: "Company", href: "#" }, - { label: "About", href: "/about" }, + { label: "About", href: "about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, ], @@ -67,16 +67,17 @@ export default function ContactPage() { headingFontWeight="medium" >
-
-
-
@@ -146,4 +158,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 6b41c8e0aa1205dc8ae56bb79beeffcd6233386e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 18:51:22 +0000 Subject: [PATCH 2/4] 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 +} -- 2.49.1 From 4af8bf8717b36c574f67f90122f210864094acb5 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 18:51:23 +0000 Subject: [PATCH 3/4] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 100 ++++++++++++++++++++++++--------------- 1 file changed, 61 insertions(+), 39 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 1d08415..f804436 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -2,27 +2,27 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; -import ContactText from "@/components/sections/contact/ContactText"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { TrendingUp, HelpCircle, Zap } from "lucide-react"; +import { TrendingUp, HelpCircle, MessageSquare, Zap } from "lucide-react"; export default function PricingPage() { 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: "#" }, ], @@ -30,7 +30,7 @@ export default function PricingPage() { { items: [ { label: "Company", href: "#" }, - { label: "About", href: "/about" }, + { label: "About", href: "about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, ], @@ -67,16 +67,17 @@ export default function PricingPage() { headingFontWeight="medium" > -
- +
-
-
@@ -150,4 +172,4 @@ export default function PricingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From b7b2b3dce9a06fd9e2a430c6e0899fe6a9a87271 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 18:51:23 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 5038a9b..e23f236 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -13,12 +13,12 @@ --background: #f5f5f5; --card: #ffffff; --foreground: #1c1c1c; - --primary-cta: #1f514c; + --primary-cta: #c41e3a; --primary-cta-text: #f5f5f5; --secondary-cta: #ffffff; --secondary-cta-text: #1c1c1c; - --accent: #159c49; - --background-accent: #a8e8ba; + --accent: #001f3f; + --background-accent: #c41e3a; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1