diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f31317d..3c06280 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -4,55 +4,11 @@ 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 SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; 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 */} +
-
- +
+ {/* Footer */} + +
+
@@ -100,7 +132,8 @@ export default function ContactPage() { speed={40} showCard={true} names={[ - "TechCorp", "CloudScale", "FinFlow", "Enterprise Solutions", "Innovation Labs", "Global Services", "Digital Systems", "Future Tech"]} + "TechCorp", "CloudScale", "FinFlow", "Enterprise Solutions", "Innovation Labs", "Global Services", "Digital Systems", "Future Tech" + ]} />
diff --git a/src/app/page.tsx b/src/app/page.tsx index 380d7a6..daf77f4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,53 +11,10 @@ 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 */} @@ -126,37 +133,43 @@ export default function PricingPage() { metrics={[ { id: "1", icon: TrendingUp, - title: "Ticket Reduction", value: "65%"}, + title: "Ticket Reduction", value: "65%" + }, { id: "2", icon: Clock, - title: "Time to Deploy", value: "<10 min"}, + title: "Time to Deploy", value: "<10 min" + }, { id: "3", icon: Users, - title: "Employee Adoption", value: "94%"}, + title: "Employee Adoption", value: "94%" + }, { id: "4", icon: DollarSign, - title: "Cost Savings", value: "45%"}, + title: "Cost Savings", value: "45%" + }, ]} title="OpenFlow AI Impact" description="Measurable results across enterprise deployments" tag="Performance" textboxLayout="default" - useInvertedBackground={true} animationType="slide-up" + useInvertedBackground={true} />
-
+