From a263f204e291cc4a5e8f8bd04a25cef0fccfd1f7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 11:03:27 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 250 +++++++++++++++-------------------------- 1 file changed, 93 insertions(+), 157 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 5b923b1..ab5a49a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,61 +1,15 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import Link from "next/link"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; -import TeamCardOne from "@/components/sections/team/TeamCardOne"; -import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Award, Users, Star } from "lucide-react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import Link from 'next/link'; +import { CheckCircle, Award, Star } from 'lucide-react'; export default function AboutPage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "Services", id: "services" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, - ]; - - const footerColumns = [ - { - title: "Services", - items: [ - { label: "Security Services", href: "#services" }, - { label: "Facility Management", href: "#services" }, - { label: "Event Security", href: "#services" }, - { label: "Bouncer Services", href: "#services" }, - ], - }, - { - title: "Company", - items: [ - { label: "About Us", href: "/about" }, - { label: "Our Team", href: "#team" }, - { label: "Testimonials", href: "#testimonials" }, - { label: "Contact Us", href: "/contact" }, - ], - }, - { - title: "Resources", - items: [ - { label: "Security Blog", href: "#" }, - { label: "FAQ", href: "#" }, - { label: "Compliance", href: "#" }, - { label: "Careers", href: "#" }, - ], - }, - { - title: "Legal", - items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "Security Policy", href: "#" }, - { label: "Sitemap", href: "#" }, - ], - }, - ]; - return ( + {/* Navbar */} -
- -
- -
- +
+ {/* About TressM Section */} +
+ +
+ + {/* Client Testimonials */}
+ {/* Footer */} -- 2.49.1