diff --git a/src/app/page.tsx b/src/app/page.tsx index 79fa222..3419d65 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -99,30 +99,50 @@ export default function LandingPage() { description="4.5 stars. Trusted by the Alameda community." testimonials={[ { - id: "1", name: "Marcus J.", handle: "@bay_area_cut", testimonial: - "The fade is crispy every time. I have biracial black textured hair and they do a great job with my texture. Lynn really knows her craft.", rating: 5, + id: "1", name: "Kenji O", handle: "@kenji_cuts", testimonial: + "Lynn's attention to detail is incredible. She takes time to understand exactly what I want and executes it perfectly every time. Best barber I've found in the Bay.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work-washing-head_627829-7234.jpg", imageAlt: "Marcus, satisfied customer"}, + "http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work-washing-head_627829-7234.jpg", imageAlt: "Kenji, satisfied customer"}, { - id: "2", name: "David K.", handle: "@premium_cuts", testimonial: - "Lynn provides a premium haircut at a low price. Skin fade every time—attention to detail is unmatched. Worth every penny.", rating: 5, + id: "2", name: "Marat", handle: "@marat_style", testimonial: + "The precision and craftsmanship here is unmatched. Lynn knows exactly how to work with my hair type and always delivers a clean, sharp look. Worth every penny.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/smiling-handsome-man-jacket-posing_171337-19811.jpg", imageAlt: "David, premium customer"}, + "http://img.b2bpic.net/free-photo/smiling-handsome-man-jacket-posing_171337-19811.jpg", imageAlt: "Marat, premium customer"}, { - id: "3", name: "Robert T.", handle: "@barber_lover", testimonial: - "She's been the best barber I've ever had in my 30 years. You can tell she's spent years perfecting her craft. That's the mark of a true professional.", rating: 5, + id: "3", name: "Hamlet Strange", handle: "@hamlet_groomed", testimonial: + "I've been going to barbershops for over 20 years, and Lynn is hands down the best. She treats every client like family and takes pride in every cut.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/portrait-optimistic-businessman-formalwear_1262-3600.jpg", imageAlt: "Robert, long-time customer"}, + "http://img.b2bpic.net/free-photo/portrait-optimistic-businessman-formalwear_1262-3600.jpg", imageAlt: "Hamlet, long-time customer"}, { - id: "4", name: "James M.", handle: "@cut_connoisseur", testimonial: - "She knows exactly how to cut my hair—which is an excellent sign of an excellent barber. Always consistent, always sharp.", rating: 5, + id: "4", name: "Marvin Navas", handle: "@marvin_fresh", testimonial: + "Consistent quality, friendly service, and honest prices. Lynn keeps it real and delivers results every single time. This is my barber for life.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/snarling-angry-man_1154-81.jpg", imageAlt: "James, loyal customer"}, + "http://img.b2bpic.net/free-photo/snarling-angry-man_1154-81.jpg", imageAlt: "Marvin, loyal customer"}, { - id: "5", name: "Anthony L.", handle: "@local_love", testimonial: - "Great price for what you get. The young dude is really good too. Love supporting a woman-owned shop in Alameda.", rating: 5, + id: "5", name: "J", handle: "@j_refined", testimonial: + "Finally found a barber who gets it. Lynn listens, executes, and makes you feel welcomed. Supporting a woman-owned shop that actually cares about the craft.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/side-view-man-hair-salon_23-2150665451.jpg", imageAlt: "Anthony, community supporter"}, + "http://img.b2bpic.net/free-photo/side-view-man-hair-salon_23-2150665451.jpg", imageAlt: "J, community supporter"}, + { + id: "6", name: "S. E.", handle: "@se_grooming", testimonial: + "The fade work is crispy, the atmosphere is welcoming, and the prices are fair. Lynn truly cares about making every customer look their best.", rating: 5, + imageSrc: + "http://img.b2bpic.net/free-photo/handsome-bearded-man-barbershop-barber-work-washing-head_627829-7234.jpg", imageAlt: "S.E., satisfied customer"}, + { + id: "7", name: "B. Wai", handle: "@bwai_cuts", testimonial: + "Lynn is a true professional. Her fade lines are sharp, her technique is flawless, and she remembers how you like your cut. Highly recommend.", rating: 5, + imageSrc: + "http://img.b2bpic.net/free-photo/smiling-handsome-man-jacket-posing_171337-19811.jpg", imageAlt: "B.Wai, premium customer"}, + { + id: "8", name: "Alex Tran", handle: "@alex_fresh_fade", testimonial: + "Walk-ins welcome and no appointment hassle makes it easy, but the real reason I come back is Lynn's skill. Every cut is exactly what I need.", rating: 5, + imageSrc: + "http://img.b2bpic.net/free-photo/portrait-optimistic-businessman-formalwear_1262-3600.jpg", imageAlt: "Alex, satisfied customer"}, + { + id: "9", name: "kooshdakhaa madness", handle: "@koosh_style", testimonial: + "Been here multiple times and never disappointed. Lynn's got that magic touch. The shop has great energy and everyone feels respected.", rating: 5, + imageSrc: + "http://img.b2bpic.net/free-photo/snarling-angry-man_1154-81.jpg", imageAlt: "kooshdakhaa, loyal customer"}, ]} showRating={true} animationType="slide-up" diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx new file mode 100644 index 0000000..662ac8e --- /dev/null +++ b/src/app/reviews/page.tsx @@ -0,0 +1,134 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Award } from "lucide-react"; + +export default function ReviewsPage() { + return ( + + + +
+ +
+ + +
+ ); +}