+
-
-
-
-
-
+
);
-}
+}
\ No newline at end of file
diff --git a/src/app/testimonials/page.tsx b/src/app/testimonials/page.tsx
index 81f0e5d..270cf55 100644
--- a/src/app/testimonials/page.tsx
+++ b/src/app/testimonials/page.tsx
@@ -1,110 +1,74 @@
"use client";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
-import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
-import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
-import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
-import { ArrowRight, UserCheck, Scale } from "lucide-react";
-import Link from "next/link";
+import { Star } from "lucide-react";
export default function TestimonialsPage() {
const navItems = [
- { name: "Home", id: "home", href: "/" },
- { name: "About Us", id: "about", href: "/about" },
- { name: "Practice Areas", id: "practice-areas", href: "/practice-areas" },
- { name: "Testimonials", id: "testimonials", href: "/testimonials" },
- { name: "Contact", id: "contact", href: "/contact" }
- ];
+ { name: "Home", href: "/" },
+ { name: "About Us", href: "/about" },
+ { name: "Testimonials", href: "/testimonials" }
+ ].map(item => ({ ...item, id: item.href }));
return (
({ name: item.name, id: item.id, href: item.href }))}
+ navItems={navItems}
bottomLeftText="Beirut, Lebanon"
bottomRightText="mazen730@gmail.com"
/>
-
-
-
-
-
-
-
-
-
-
+
-
+
);
-}
+}
\ No newline at end of file