8 Commits

Author SHA1 Message Date
41e78b0ddc Update src/app/page.tsx 2026-01-03 18:08:32 +00:00
07ee19284a Update src/app/page.tsx 2026-01-03 18:05:12 +00:00
79960c4d0a Update src/app/layout.tsx 2026-01-03 18:05:11 +00:00
cad6916602 Update src/app/page.tsx 2026-01-03 17:51:18 +00:00
443344d2b5 Update src/app/layout.tsx 2026-01-03 17:51:18 +00:00
eb763101c3 Update src/app/globals.css 2026-01-03 17:51:17 +00:00
b58359c794 Update src/app/page.tsx 2026-01-03 17:47:52 +00:00
95322a45fc Update src/app/layout.tsx 2026-01-03 17:47:51 +00:00
3 changed files with 54 additions and 12 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #f8fcff;;
--card: #ffffff;;
--foreground: #00101f;;
--primary-cta: #409fff;;
--secondary-cta: #ffffff;;
--accent: #c7e2fc;;
--background-accent: #9bcfff;;
--background: #0a0a0a;;
--card: #1a1a1a;;
--foreground: #fffffae6;;
--primary-cta: #fde047;;
--secondary-cta: #1a1a1a;;
--accent: #737373;;
--background-accent: #737373;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1266,4 +1266,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -9,7 +9,7 @@ import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCa
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Tag } from "lucide-react";
import { Tag, HelpCircle } from "lucide-react";
export default function BarbershopPage() {
return (
@@ -56,8 +56,8 @@ export default function BarbershopPage() {
href: "contact"
},
{
text: "Learn More",
href: "services"
text: "Call Now",
onClick: () => window.open("tel:+1234567890", "_self")
}
]}
/>
@@ -209,6 +209,46 @@ export default function BarbershopPage() {
tag: "Regular Client",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767461725080-cglir8j9.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767461725080-cglir8j9.jpg"
},
{
id: "7",
name: "Benjamin Carter, Real Estate Agent",
date: "Date: 2 November 2024",
title: "Exceptional attention to detail",
quote: "The level of care and precision here is outstanding. I travel 30 minutes just to come here because it's worth every mile.",
tag: "VIP Client",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767461722861-9g2vgbhb.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767461722861-9g2vgbhb.jpg"
},
{
id: "8",
name: "Samuel Rodriguez, Architect",
date: "Date: 25 October 2024",
title: "Consistently excellent service",
quote: "Been a client for over two years now. The consistency and quality never wavers. They've earned my trust completely.",
tag: "Loyal Client",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767461723100-gbrx8ejz.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767461723100-gbrx8ejz.jpg"
},
{
id: "9",
name: "Jonathan Mitchell, Software Engineer",
date: "Date: 18 October 2024",
title: "Perfect cuts every single time",
quote: "I'm extremely particular about my haircuts, and these guys deliver perfection consistently. The craftsmanship is unmatched.",
tag: "Premium Member",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767461723495-8nlkg9c5.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767461723495-8nlkg9c5.jpg"
},
{
id: "10",
name: "Alexander Thompson, Sales Director",
date: "Date: 10 October 2024",
title: "The gold standard for barbershops",
quote: "This place sets the bar for what a barbershop should be. Professional, skilled, and they truly care about getting it right every time.",
tag: "Regular Client",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767461724217-bu61w8k5.jpg",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767461724217-bu61w8k5.jpg"
}
]}
/>
@@ -216,6 +256,8 @@ export default function BarbershopPage() {
<div id="faq" data-section="faq">
<FaqBase
tag="Help"
tagIcon={HelpCircle}
title="Frequently Asked Questions"
description="Have questions about our services, pricing, or booking? Find answers here."
textboxLayout="default"
@@ -281,4 +323,4 @@ export default function BarbershopPage() {
</div>
</ThemeProvider>
);
}
}