Add src/app/testimonials/page.tsx

This commit is contained in:
2026-05-19 18:18:04 +00:00
parent 7dc66d44a1
commit c848df7189

View File

@@ -0,0 +1,33 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import FooterMedia from "@/components/sections/footer/FooterMedia";
export default function TestimonialsPage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingInline
brandName="Encore Patient Transfer"
navItems={[{ name: "Home", id: "/" }, { name: "About", id: "/about" }, { name: "Testimonials", id: "/testimonials" }, { name: "Contact", id: "/contact" }]}
button={{ text: "Call Now", href: "tel:8448212700" }}
/>
<div id="testimonials">
<TestimonialCardThirteen
title="Client Success Stories"
description="Real feedback from families we've helped."
testimonials={[{ id: "1", name: "Sarah J.", handle: "Family Member", testimonial: "Compassionate care, always on time.", rating: 5 }, { id: "2", name: "Mike D.", handle: "Family Member", testimonial: "Professional and safe, highly recommend.", rating: 5 }]}
showRating={true}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<FooterMedia
logoText="Encore Patient Transfer"
columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/contact" }] }]}
/>
</ThemeProvider>
);
}