Add src/app/testimonials/page.tsx
This commit is contained in:
30
src/app/testimonials/page.tsx
Normal file
30
src/app/testimonials/page.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
|
||||
export default function TestimonialsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingInline navItems={[{ name: "Home", id: "/" }, { name: "Services", id: "/services" }, { name: "Features", id: "/features" }, { name: "About", id: "/about" }, { name: "Testimonials", id: "/testimonials" }, { name: "Areas", id: "/areas" }, { name: "Contact", id: "/contact" }]} brandName="Mina's Cleaning" button={{ text: "Get a Free Quote", href: "/contact" }} />
|
||||
<TestimonialCardSixteen animationType="slide-up" textboxLayout="default" useInvertedBackground={true} testimonials={[{ id: "1", name: "Sarah Miller", role: "Homeowner", company: "Glenside, PA", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-waitress_107420-12307.jpg" }, { id: "2", name: "John Thompson", role: "Office Manager", company: "Cherry Hill, NJ", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/handsome-businessman-standing-way-office-with-laptop-hand_1150-3062.jpg" }, { id: "3", name: "Elena Rodriguez", role: "Store Owner", company: "Wilmington, DE", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-male-florist-with-colorful-flowers-shop_23-2148075323.jpg" }, { id: "4", name: "David Wu", role: "Homeowner", company: "Ambler, PA", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/mom-spending-time-with-her-kid_23-2149495910.jpg" }, { id: "5", name: "Karen Stevens", role: "Real Estate Agent", company: "Princeton, NJ", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/expressive-senior-female-posing-indoor_344912-1346.jpg" }]} kpiItems={[{ value: "500+", label: "Homes Cleaned" }, { value: "150+", label: "Businesses" }, { value: "5.0", label: "Avg Rating" }]} title="Voices of Trust" description="Hear what our valued clients in PA, NJ, and DE say about our services." />
|
||||
<FooterBaseCard logoText="Mina's Cleaning" columns={[{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]} copyrightText="© 2025 Mina's Cleaning Services | Glenside, PA" />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user