Add src/app/testimonials/page.tsx
This commit is contained in:
32
src/app/testimonials/page.tsx
Normal file
32
src/app/testimonials/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user