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 (