Add src/app/reviews/page.tsx

This commit is contained in:
2026-04-21 19:09:44 +00:00
parent ab60298b63
commit e9f2ef2e84

60
src/app/reviews/page.tsx Normal file
View File

@@ -0,0 +1,60 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import FooterCard from '@/components/sections/footer/FooterCard';
export default function ReviewsPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="largeSizeMediumTitles"
background="fluid"
cardStyle="subtle-shadow"
primaryButtonStyle="flat"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Reviews", id: "/reviews" },
]}
brandName="Buffalo Steakhaus"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
cardTitle="Guest Reflections"
cardTag="Authentic Praise"
cardAnimation="blur-reveal"
useInvertedBackground={true}
testimonials={[
{ id: "1", name: "Sarah Johnson", imageSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081849.jpg" },
{ id: "2", name: "Michael Chen", imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-man-luxurious-restaurant_23-2150517397.jpg" },
{ id: "3", name: "Emily Rodriguez", imageSrc: "http://img.b2bpic.net/free-photo/crazy-chef-worried-expression_1194-1549.jpg" },
{ id: "4", name: "David Kim", imageSrc: "http://img.b2bpic.net/free-photo/bearded-black-man-wearing-suit-felt-hat_613910-16012.jpg" },
{ id: "5", name: "Anna Schmidt", imageSrc: "http://img.b2bpic.net/free-photo/couple-having-date-together-luxurious-restaurant_23-2150517448.jpg" },
]}
buttons={[{ text: "Return Home", href: "/" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="BUFFALO STEAKHAUS"
copyrightText="© 2025 | Buffalo Steakhaus Frankfurt"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}