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