Update src/app/testimonials/page.tsx

This commit is contained in:
2026-04-11 21:11:51 +00:00
parent e2668665df
commit 4e11747d27

View File

@@ -3,46 +3,30 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function TestimonialsPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Menu", id: "/#menu" },
{ name: "Reviews", id: "/testimonials" },
{ name: "Visit", id: "/contact" },
]}
brandName="Mary's Cafe"
/>
<div id="testimonials" data-section="testimonials" className="py-24">
<TestimonialCardSix
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{ id: "t1", name: "Chris Ward", handle: "@chrisward", testimonial: "Cheapest coffee in town and great value. Really kind people.", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-coffee-cup-work-medium-shot_23-2149308464.jpg" },
{ id: "t2", name: "Ada Wang", handle: "@adawang", testimonial: "Very affordable price and great food. Egg mayo sandwich is my favourite.", imageSrc: "http://img.b2bpic.net/free-photo/woman-trying-listening-some-sound_1187-3768.jpg" },
{ id: "t3", name: "Kaoutar Mahani", handle: "@kaoutar", testimonial: "Excellent service and food quality. Always a 5-star experience.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-stylish-cool-funny-teenage-woman-going-crazy-checkered-shirt-holding-plastic-coffee-cup_158538-8194.jpg" },
{ id: "t4", name: "Sarah Jenkins", handle: "@sarahj", testimonial: "The atmosphere is always welcoming. A hidden gem in the city.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-holding-coffee-cup_23-2148877753.jpg" },
{ id: "t5", name: "Michael Roberts", handle: "@mroberts", testimonial: "Consistently great coffee. It's my daily stop for a reason.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-holding-cup-coffee-coffee-shop_1170-2324.jpg" },
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
]}
title="Loved by Our Community"
description="Don't just take our word for it. Hear what our regulars have to say."
brandName="Mary's Cafe"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Menu", href: "/menu" }] }]}
logoText="Mary's Cafe"
/>
</div>
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/#about" }, { label: "Menu", href: "/#menu" }] },
{ items: [{ label: "Reviews", href: "/testimonials" }, { label: "Contact", href: "/contact" }, { label: "Privacy Policy", href: "#" }] },
]}
logoText="Mary's Cafe"
/>
</ReactLenis>
</ThemeProvider>
);