Update src/app/testimonials/page.tsx

This commit is contained in:
2026-05-07 21:58:31 +00:00
parent 9a19715a71
commit d33b20bf52

View File

@@ -1,31 +1,30 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function TestimonialsPage() {
const navLinks = [{ name: "الرئيسية", id: "/" }, { name: "آراء العملاء", id: "/testimonials" }, { name: "الأسئلة الشائعة", id: "/faq" }, { name: "احجز موعداً", id: "/service-request" }];
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "الرئيسية", id: "/" },
{ name: "التقييمات", id: "testimonials" },
{ name: "المدونة", id: "/blog" }
<NavbarLayoutFloatingInline navItems={navLinks} brandName="Aljoman Dental" />
<TestimonialCardThirteen
title="آراء عملائنا المميزين"
description="نفتخر بثقة آلاف المرضى في خدماتنا"
showRating={true}
animationType="slide-up"
textboxLayout="split"
testimonials={[
{ id: "1", name: "أحمد", handle: "@ahmed", testimonial: "تجربة رائعة!", rating: 5 },
{ id: "2", name: "سارة", handle: "@sara", testimonial: "خدمة متميزة جداً.", rating: 5 }
]}
brandName="Aljoman Dental"
/>
<div className="pt-32 pb-20">
<TestimonialCardTwo
title="آراء مرضانا"
description="نفخر بثقة عملائنا في خدماتنا."
testimonials={[]}
animationType="slide-up"
/>
</div>
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[]} />
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[{ items: [{ label: "الرئيسية", href: "/" }] }]} />
</ReactLenis>
</ThemeProvider>
);