Add src/app/reviews/page.tsx

This commit is contained in:
2026-03-24 04:11:37 +00:00
parent adc1c60bfa
commit dfb7f6acce

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

@@ -0,0 +1,70 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
export default function ReviewsPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="large"
background="floatingGradient"
cardStyle="layered-gradient"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="semibold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About Us", id: "/about" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" },
]}
brandName="Miron's Cut"
button={{ text: "Book Appointment", href: "/contact" }}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
animationType="scale-rotate"
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{ id: "1", name: "John D.", handle: "@johndoescut", testimonial: "Always a perfect cut! The barbers here are true artists and the atmosphere is always welcoming. My go-to spot in Glendale.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-good-looking-nordic-unshaven-man-with-fashionable-hairdo-posing_176420-15809.jpg?_wi=1"},
{ id: "2", name: "Michael S.", handle: "@mike_sharp", testimonial: "Professional, clean, and friendly. Miron's Cut consistently delivers. Best beard trim I've ever had!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/expressive-redhead-guy-beige-shirt_176420-32311.jpg?_wi=1"},
{ id: "3", name: "David R.", handle: "@david_fade", testimonial: "Finding a reliable barber can be tough, but Miron's Cut nailed it. Every cut is exactly what I ask for, and it lasts.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-with-long-hair-sitting-cafe-with-phone-man_273609-6373.jpg?_wi=1"},
{ id: "4", name: "Chris K.", handle: "@chris_fresh", testimonial: "I bring my son here, and they're great with kids. Patient, skilled, and he always leaves with a smile and a sharp haircut.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-hairdresser-washing-man-s-hair_23-2150665392.jpg"},
{ id: "5", name: "Mark L.", handle: "@mark_style", testimonial: "From the moment you walk in, you know you're in good hands. The attention to detail is unmatched, truly a premium experience.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/ypung-man-puts-foam-shave-face_633478-2338.jpg"},
]}
showRating={true}
title="What Our Clients Say"
description="Hear directly from our satisfied customers about their positive experiences and the quality service they receive at Miron's Cut."
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "About Us", href: "/about"}, { label: "Reviews", href: "/reviews"}, { label: "Contact", href: "/contact"}] },
{ title: "Services", items: [{ label: "Haircuts", href: "/services#haircuts"}, { label: "Beard Trims", href: "/services#beard-trims"}, { label: "Styling", href: "/services#styling"}, { label: "All Services", href: "/services"}] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#"}, { label: "Terms of Service", href: "#"}] },
]}
bottomLeftText="© 2024 Miron's Cut. All rights reserved."
bottomRightText="Crafted with precision in Glendale, AZ."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}