From 0cb455c6ed43794b96f2fbafb38fffc3edc879ae Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 21:18:39 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 179 ++++++++++++++++++++++++----------------- 1 file changed, 107 insertions(+), 72 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index fa5b7d7..0d03373 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,45 +3,47 @@ import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; -import TeamCardTwo from "@/components/sections/team/TeamCardTwo"; -import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven"; -import FooterBase from "@/components/sections/footer/FooterBase"; -import { Facebook, Twitter, Linkedin } from "lucide-react"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +import TeamCardOne from "@/components/sections/team/TeamCardOne"; +import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; +import FaqDouble from "@/components/sections/faq/FaqDouble"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import { Globe, Award, Users, TrendingUp, Twitter, Linkedin, Instagram, Dribbble, Star } from "lucide-react"; export default function AboutPage() { const navItems = [ - { name: "Work", id: "work" }, - { name: "Services", id: "services" }, - { name: "About", href: "/about" }, - { name: "Contact", id: "contact" } + { name: "Work", id: "/work" }, + { name: "Services", id: "/services" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { title: "Company", items: [ - { label: "About", href: "/about" }, - { label: "Services", href: "#services" }, - { label: "Work", href: "#work" }, - { label: "Contact", href: "#contact" } - ] + { label: "About", href: "#about" }, + { label: "Services", href: "/services" }, + { label: "Work", href: "/work" }, + { label: "Contact", href: "/contact" }, + ], }, { title: "Services", items: [ { label: "Web Development", href: "#" }, { label: "SEO", href: "#" }, { label: "Branding", href: "#" }, - { label: "UI/UX Design", href: "#" } - ] + { label: "UI/UX Design", href: "#" }, + ], }, { title: "Connect", items: [ { label: "Twitter", href: "#" }, { label: "LinkedIn", href: "#" }, { label: "Instagram", href: "#" }, - { label: "Dribbble", href: "#" } - ] - } + { label: "Dribbble", href: "#" }, + ], + }, ]; return ( @@ -61,62 +63,95 @@ export default function AboutPage() { -
- -
+ + -
- -
+ + -
- -
- - + ); -} \ No newline at end of file +} -- 2.49.1