6 Commits

Author SHA1 Message Date
af6f14ad1c Update src/app/page.tsx 2026-04-15 18:28:29 +00:00
14974867be Merge version_3 into main
Merge version_3 into main
2026-04-15 18:24:10 +00:00
0749389252 Update src/app/page.tsx 2026-04-15 18:24:04 +00:00
ea291795c7 Merge version_2 into main
Merge version_2 into main
2026-04-15 18:21:51 +00:00
1de9d56c70 Update src/app/page.tsx 2026-04-15 18:21:48 +00:00
ebae2126bb Merge version_1 into main
Merge version_1 into main
2026-04-15 18:19:09 +00:00

View File

@@ -12,7 +12,7 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
export default function LandingPage() {
return (
@@ -113,15 +113,13 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
<TestimonialCardFive
textboxLayout="split"
useInvertedBackground={false}
testimonials={[
{ id: "1", title: "Best in Town", quote: "The best barbershop I know! Spectacular environment and excellent professionals.", name: "Victor Cruz", role: "Regular Client", imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-gray-checkered-suit_158538-4206.jpg" },
{ id: "2", title: "Top Notch", quote: "Best barbershop in Lisbon, skilled barbers, complete environment and fair price.", name: "Alan Reis", role: "Regular Client", imageSrc: "http://img.b2bpic.net/free-photo/studio-portrait-blue-eyed-bearded-hipster-male-with-crossed-arms-grey-background_613910-3320.jpg" },
{ id: "3", title: "Impeccable", quote: "Impeccable service, I really enjoyed it, highly recommend 5 stars.", name: "Filipe Gomes", role: "Regular Client", imageSrc: "http://img.b2bpic.net/free-photo/smiling-successful-businessman-suit-showing-okay-sign-looking-satisfied-standing-against-white-ba_1258-173565.jpg" },
{ id: "4", title: "Incredible", quote: "Best barbershop, billiards, PS5, massage chair and the best haircut service!", name: "Zack Gun", role: "Regular Client", imageSrc: "http://img.b2bpic.net/free-photo/positive-blond-bearded-male-dressed-plaid-shirt-denim-jacket-posing-grey-vignette-background_613910-11782.jpg" },
{ id: "5", title: "Professional", quote: "Great professionals, never failed, I've been coming every week.", name: "Igor Batista", role: "Regular Client", imageSrc: "http://img.b2bpic.net/free-photo/young-bearded-man-getting-haircut-by-hairdresser-while-sitting-chair-barbershop-barber-soul_627829-6410.jpg" },
{ id: "1", name: "Victor Cruz", date: "2024-05-12", title: "Best in Town", quote: "The best barbershop I know! Spectacular environment and excellent professionals.", tag: "Regular", avatarSrc: "http://img.b2bpic.net/free-photo/handsome-man-gray-checkered-suit_158538-4206.jpg" },
{ id: "2", name: "Alan Reis", date: "2024-04-15", title: "Top Notch", quote: "Best barbershop in Lisbon, skilled barbers, complete environment and fair price.", tag: "Regular", avatarSrc: "http://img.b2bpic.net/free-photo/studio-portrait-blue-eyed-bearded-hipster-male-with-crossed-arms-grey-background_613910-3320.jpg" },
{ id: "3", name: "Filipe Gomes", date: "2024-03-20", title: "Impeccable", quote: "Impeccable service, I really enjoyed it, highly recommend 5 stars.", tag: "Regular", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-successful-businessman-suit-showing-okay-sign-looking-satisfied-standing-against-white-ba_1258-173565.jpg" },
]}
title="Loved by Our Clients"
description="See why our customers keep coming back."
@@ -154,7 +152,7 @@ export default function LandingPage() {
tag="Visit Us"
title="Ready to get a fresh cut?"
description="Book your appointment online today and join the best barbershop community in Oeiras."
buttons={[{ text: "Book Online Now", href: "#" }]}
buttons={[{ text: "Book Appointment Now", href: "#" }]}
/>
</div>
@@ -174,4 +172,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}