Update src/app/testimonials/page.tsx

This commit is contained in:
2026-05-07 21:59:06 +00:00
parent ced8800cc5
commit d2171af73f

View File

@@ -1,32 +1,29 @@
"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"
<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: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
brandName="Company"
button={{ text: "Get Started", href: "#" }}
/>
<div className="pt-32 pb-20">
<TestimonialCardTwo
title="آراء مرضانا"
description="نفخر بثقة عملائنا في خدماتنا."
testimonials={[]}
animationType="slide-up"
/>
</div>
<FooterLogoEmphasis logoText="عيادات الجومان" columns={[]} />
</ReactLenis>
</div>
</ThemeProvider>
);
}