Add src/app/testimonials/page.tsx

This commit is contained in:
2026-05-07 21:57:41 +00:00
parent ae17703a5d
commit cba453ac82

View File

@@ -0,0 +1,32 @@
"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 FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function TestimonialsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline
navItems={[
{ name: "الرئيسية", id: "/" },
{ name: "التقييمات", id: "testimonials" },
{ name: "المدونة", id: "/blog" }
]}
brandName="Aljoman Dental"
/>
<div className="pt-32 pb-20">
<TestimonialCardTwo
title="آراء مرضانا"
description="نفخر بثقة عملائنا في خدماتنا."
testimonials={[]}
animationType="slide-up"
/>
</div>
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[]} />
</ReactLenis>
</ThemeProvider>
);
}