From 7a600641600f211d32351aac731fbaa99bae5975 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 21:30:43 +0000 Subject: [PATCH] Update src/app/about/page.tsx --- src/app/about/page.tsx | 115 +++++++++++++++-------------------------- 1 file changed, 43 insertions(+), 72 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 070d35f..e03282a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,39 +1,21 @@ "use client"; - -import Link from 'next/link'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import MediaAbout from '@/components/sections/about/MediaAbout'; -import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { Star, MessageCircle, Award } from 'lucide-react'; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import MediaAbout from "@/components/sections/about/MediaAbout"; +import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; +import Link from "next/link"; +import { Star, MessageCircle, Award } from "lucide-react"; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "Gallery", id: "/gallery" }, + { name: "Reviews", id: "/reviews" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, +]; export default function AboutPage() { - const navItems = [ - { name: "About", id: "about", href: "/about" }, - { name: "Contact", id: "contact", href: "/contact" }, - ]; - - const assetMap = { - "about-craftsmanship": { - "url": "http://img.b2bpic.net/free-photo/white-business-center-with-beautiful-textures-unique-design-with-interior-staircases_181624-5365.jpg", "alt": "Professional landscaper working on a detailed hardscape design" - }, - "testimonial-1": { - "url": "http://img.b2bpic.net/free-photo/business-woman-banner-concept-with-copy-space_23-2149601533.jpg", "alt": "Sarah J. testimonial avatar" - }, - "testimonial-2": { - "url": "http://img.b2bpic.net/free-photo/portrait-handsome-smiling-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-elegant-suit-fashion-male-posing-studio-near-blue-wall_158538-21048.jpg", "alt": "Michael C. testimonial avatar" - }, - "testimonial-3": { - "url": "http://img.b2bpic.net/free-photo/smiling-young-woman-typing-her-laptop_231208-13559.jpg", "alt": "Emily R. testimonial avatar" - } - }; - - const resolveAsset = (assetId) => { - const asset = assetMap[assetId.replace('asset://', '')]; - return asset ? asset.url : ''; - }; - return ( -
+
-
- -
- -
+
- + ); -} \ No newline at end of file +} -- 2.49.1