From dcb9f611971b0c3a2dcbf1bf3d8958b2328580cb Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 04:48:30 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 123 +++++++++++++++++------------------------ 1 file changed, 52 insertions(+), 71 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f0f6dad..3f20100 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,20 +3,21 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; -import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import TextAbout from "@/components/sections/about/TextAbout"; import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; -import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; +import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Briefcase, Target, Users, Award, Heart, Zap } from "lucide-react"; +import { Zap, Award, Users, Lightbulb } from "lucide-react"; export default function AboutPage() { const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Solutions", id: "/solutions" }, - { name: "Services", id: "/services" }, + { name: "Home", id: "home" }, + { name: "About", id: "about" }, + { name: "Solutions", id: "solutions" }, + { name: "Services", id: "services" }, { name: "Projects", id: "projects" }, + { name: "Blog", id: "blog" }, { name: "Contact", id: "contact" }, ]; @@ -33,6 +34,7 @@ export default function AboutPage() { { title: "Company", items: [ { label: "About Us", href: "/about" }, + { label: "Our Services", href: "/services" }, { label: "Projects & Portfolio", href: "/" }, { label: "Blog & Articles", href: "/" }, { label: "Careers", href: "/" }, @@ -84,86 +86,67 @@ export default function AboutPage() {
-
- +
-
+
-