From 27d8b1edc60975d475d8172182b009b17c4d75f0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 26 Apr 2026 00:52:58 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 100 ++++++++--------------------------------- 1 file changed, 18 insertions(+), 82 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d9e62a7..b25f685 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,11 +3,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; +import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -export default function LandingPage() { +export default function AboutPage() { return (
-
@@ -67,36 +53,14 @@ export default function LandingPage() { title="Our Values" description="Committed to the safety of every customer." testimonials={[ - { - id: "at1", - name: "Alex R.", - role: "Founder", - company: "Cobra", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-man-blue-shirt-standing-against-grey-wall_23-2148130268.jpg", - }, - { - id: "at2", - name: "Maria L.", - role: "Lead Engineer", - company: "Cobra", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-executive-with-crossed-arms_1154-242.jpg", - }, + { id: "at1", name: "Alex R.", role: "Founder", company: "Cobra", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-man-blue-shirt-standing-against-grey-wall_23-2148130268.jpg" }, + { id: "at2", name: "Maria L.", role: "Lead Engineer", company: "Cobra", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-executive-with-crossed-arms_1154-242.jpg" }, + { id: "at3", name: "Tom K.", role: "Support", company: "Cobra", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/blond-man-happy-expression_1194-2873.jpg" } ]} kpiItems={[ - { - value: "10k+", - label: "Units Sold", - }, - { - value: "50+", - label: "States Shipped", - }, - { - value: "100%", - label: "Customer Care", - }, + { value: "10k+", label: "Units Sold" }, + { value: "50+", label: "States Shipped" }, + { value: "100%", label: "Customer Care" } ]} /> @@ -104,36 +68,8 @@ export default function LandingPage() { @@ -56,26 +40,11 @@ export default function LandingPage() { title="Get in Touch" description="Questions? We are here to help." inputs={[ - { - name: "name", - type: "text", - placeholder: "Your Name", - required: true, - }, - { - name: "email", - type: "email", - placeholder: "Your Email", - required: true, - }, + { name: "name", type: "text", placeholder: "Your Name", required: true }, + { name: "email", type: "email", placeholder: "Your Email", required: true } ]} - textarea={{ - name: "message", - placeholder: "Your message here...", - rows: 4, - required: true, - }} - imageSrc="http://img.b2bpic.net/free-photo/side-view-man-taking-notes-ambulance-car_23-2149478462.jpg?_wi=2" + textarea={{ name: "message", placeholder: "Your message here...", rows: 4, required: true }} + imageSrc="http://img.b2bpic.net/free-photo/side-view-man-taking-notes-ambulance-car_23-2149478462.jpg" imageAlt="safety training concept" /> @@ -87,54 +56,19 @@ export default function LandingPage() { title="Need Help Fast?" description="Review our primary support questions." faqs={[ - { - id: "cx1", - title: "How do I track shipping?", - content: "Check your email for the tracking number after purchase.", - }, - { - id: "cx2", - title: "Can I return items?", - content: "Yes, we accept returns within 30 days.", - }, + { id: "cx1", title: "How do I track shipping?", content: "Check your email for the tracking number after purchase." }, + { id: "cx2", title: "Can I return items?", content: "Yes, we accept returns within 30 days." } ]} imageSrc="http://img.b2bpic.net/free-photo/security-guards-workspace_23-2150321659.jpg" + faqsAnimation="slide-up" /> @@ -83,20 +58,8 @@ export default function LandingPage() { title="Why Choose Cobra?" description="Unmatched reliability for your safety needs." features={[ - { - id: "why1", - title: "Industrial Grade", - subtitle: "Built to last", - category: "Quality", - value: "100%", - }, - { - id: "why2", - title: "Easy to Use", - subtitle: "Ergonomic designs", - category: "UX", - value: "Simple", - }, + { id: "why1", title: "Industrial Grade", subtitle: "Built to last", category: "Quality", value: "100%" }, + { id: "why2", title: "Easy to Use", subtitle: "Ergonomic designs", category: "UX", value: "Simple" } ]} /> @@ -104,36 +67,8 @@ export default function LandingPage() {