Add src/app/testimonials/page.tsx

This commit is contained in:
2026-05-10 18:39:34 +00:00
parent 330e2be84a
commit 517ab7e0a1

View File

@@ -0,0 +1,40 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import FooterBase from '@/components/sections/footer/FooterBase';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
export default function TestimonialsPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "Testimonials", id: "/testimonials" },
]}
brandName="Spanish Ranch II"
/>
<div className="pt-32 pb-20">
<TestimonialCardTen
title="What People Say"
description="Hear from our valued members and partners about their experience at Spanish Ranch II."
testimonials={[
{ id: "1", title: "Excellent Service", quote: "Spanish Ranch II is truly a wonderful place. The attention to detail and professional service are unmatched.", name: "John Doe", role: "Resident" }
]}
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<FooterBase
columns={[]}
logoText="Spanish Ranch II"
/>
</ReactLenis>
</ThemeProvider>
);
}