Merge version_3_1783292048927 into main #2

Merged
bender merged 1 commits from version_3_1783292048927 into main 2026-07-05 22:56:23 +00:00
2 changed files with 0 additions and 60 deletions

View File

@@ -9,7 +9,6 @@ import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import ServicesSection from './HomePage/sections/Services';
import PricingSection from './HomePage/sections/Pricing';
import TestimonialsSection from './HomePage/sections/Testimonials';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
@@ -24,7 +23,6 @@ export default function HomePage(): React.JSX.Element {
<PricingSection />
<TestimonialsSection />
<FaqSection />

View File

@@ -1,58 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "testimonials" section.
import React from 'react';
import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialsSection(): React.JSX.Element {
return (
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialRatingCards
tag="Reviews"
title="What Our Clients Say"
description="Trusted by hundreds of regulars for consistent style."
testimonials={[
{
name: "Alex R.",
role: "Client",
quote: "The best haircut in town, always consistent.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/professional-barber-working-with-client-hairdressing-salon-styling-beard-with-trimmer_613910-5073.jpg",
},
{
name: "Mark D.",
role: "Client",
quote: "Highly professional and detailed work.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-hipster-male-dressed-fleece-shirt-drinks-coffee-hairdresser-s-salon_613910-5661.jpg",
},
{
name: "Chris P.",
role: "Client",
quote: "Irving never misses. The attention to detail is unmatched.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/person-choosing-clothes-wear_23-2149223951.jpg",
},
{
name: "James V.",
role: "Client",
quote: "I leave the shop looking sharp every single time.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-looking-side-young-blonde-guy-wearing-yellow-t-shirt-holding-hands-head-isolated-green_141793-85744.jpg",
},
{
name: "Brian L.",
role: "Client",
quote: "A fantastic experience and great conversation.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/brunette-female-hairdresser-washing-hair-bearded-men-client-saloon_613910-14570.jpg",
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
);
}