Update src/app/testimonials/page.tsx

This commit is contained in:
2026-05-07 22:00:20 +00:00
parent 458b7db098
commit 43d13841fd

View File

@@ -1,32 +1,18 @@
"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>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="pill" contentWidth="medium" sizing="mediumLargeSizeLargeTitles" background="aurora" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="semibold">
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "الرئيسية", id: "/" },
{ name: "التقييمات", id: "testimonials" },
{ name: "المدونة", id: "/blog" }
]}
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="Aljoman Dental"
button={{ text: "Contact", href: "/contact" }}
/>
<div className="pt-32 pb-20">
<TestimonialCardTwo
title="آراء مرضانا"
description="نفخر بثقة عملائنا في خدماتنا."
testimonials={[]}
animationType="slide-up"
/>
</div>
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[]} />
</ReactLenis>
</div>
</ThemeProvider>
);
}