From 0dea8ab6cd5f521e617259dc03defb5af9396e6d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 16:20:27 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 232 +++++++++++++++-------------------------- 1 file changed, 84 insertions(+), 148 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3c06280..f27428a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -4,11 +4,55 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroBillboardTestimonial from "@/components/sections/hero/HeroBillboardTestimonial"; import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve"; -import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import { Zap } from "lucide-react"; +import Link from "next/link"; export default function AboutPage() { + const navItems = [ + { name: "Product", id: "product" }, + { name: "Features", id: "features" }, + { name: "Pricing", id: "pricing" }, + { name: "Customers", id: "testimonials" }, + { name: "Contact", id: "contact" }, + ]; + + const footerColumns = [ + { + title: "Product", items: [ + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "Security", href: "#" }, + { label: "Roadmap", href: "#" }, + ], + }, + { + title: "Company", items: [ + { label: "About", href: "/about" }, + { label: "Blog", href: "#" }, + { label: "Careers", href: "#" }, + { label: "Contact", href: "#contact" }, + ], + }, + { + title: "Resources", items: [ + { label: "Documentation", href: "#" }, + { label: "API Reference", href: "#" }, + { label: "Support", href: "#" }, + { label: "Status", href: "#" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Security Policy", href: "#" }, + { label: "Compliance", href: "#" }, + ], + }, + ]; + return ( - {/* Navbar */} - {/* About Hero Section */} -
+
- {/* Mission & Values Section */} -
+
- {/* Testimonials Section */} -
- +
- {/* Footer */} - -
- From 3841d8f25a069c2cd5133a27f47c990f6f3d6cd1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 16:20:29 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 216 ++++++++++++++++------------------------------- 1 file changed, 74 insertions(+), 142 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index daf77f4..460c3c9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,10 +11,53 @@ import TestimonialCardFifteen from "@/components/sections/testimonial/Testimonia import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import ContactText from "@/components/sections/contact/ContactText"; import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { TrendingUp, Clock, Users, DollarSign, Sparkles, Zap } from "lucide-react"; import Link from "next/link"; -import { Zap, TrendingUp, Clock, Users, DollarSign, Sparkles } from "lucide-react"; export default function HomePage() { + const navItems = [ + { name: "Product", id: "product" }, + { name: "Features", id: "features" }, + { name: "Pricing", id: "pricing" }, + { name: "Customers", id: "testimonials" }, + { name: "Contact", id: "contact" }, + ]; + + const footerColumns = [ + { + title: "Product", items: [ + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "Security", href: "#" }, + { label: "Roadmap", href: "#" }, + ], + }, + { + title: "Company", items: [ + { label: "About", href: "/about" }, + { label: "Blog", href: "#" }, + { label: "Careers", href: "#" }, + { label: "Contact", href: "#contact" }, + ], + }, + { + title: "Resources", items: [ + { label: "Documentation", href: "#" }, + { label: "API Reference", href: "#" }, + { label: "Support", href: "#" }, + { label: "Status", href: "#" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Security Policy", href: "#" }, + { label: "Compliance", href: "#" }, + ], + }, + ]; + return ( - {/* Navbar */} - {/* Hero Section */}
- {/* Product Section */}
- {/* Features Section */}
- {/* Metrics Section */}
- {/* Pricing Section */}
- {/* Testimonials Section */}
- {/* Social Proof Section */}
- {/* Contact Section */}
- {/* Footer */} @@ -152,23 +155,23 @@ export default function PricingPage() { description="Measurable results across enterprise deployments" tag="Performance" textboxLayout="default" - animationType="slide-up" useInvertedBackground={true} + animationType="slide-up" />
-
+