16 Commits

Author SHA1 Message Date
d90bb295ec Update src/app/page.tsx 2026-01-03 18:44:22 +00:00
12cf7e7de6 Update src/app/page.tsx 2026-01-03 18:26:37 +00:00
71fb350229 Update src/app/page.tsx 2026-01-03 18:17:08 +00:00
f17306cbe3 Update src/app/page.tsx 2026-01-03 18:15:00 +00:00
c9574b06e5 Update src/app/globals.css 2026-01-03 18:12:52 +00:00
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
48043eb037 Update src/app/page.tsx 2026-01-03 17:44:31 +00:00
08a724db12 Update src/app/layout.tsx 2026-01-03 17:44:30 +00:00
317ca03a8a Update src/app/globals.css 2026-01-03 17:44:29 +00:00
2 changed files with 16 additions and 9 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #fffcfc;; --background: #fafffb;;
--card: #fffafa;; --card: #f7fffa;;
--foreground: #220000;; --foreground: #001a0a;;
--primary-cta: #c1121f;; --primary-cta: #0a7039;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #f0b8bc;; --accent: #a8d9be;;
--background-accent: #e07a82;; --background-accent: #6bbf8e;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -9,7 +9,7 @@ import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCa
import FaqBase from "@/components/sections/faq/FaqBase"; import FaqBase from "@/components/sections/faq/FaqBase";
import ContactText from "@/components/sections/contact/ContactText"; import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Tag } from "lucide-react"; import { Tag, HelpCircle, Zap } from "lucide-react";
export default function BarbershopPage() { export default function BarbershopPage() {
return ( return (
@@ -46,6 +46,7 @@ export default function BarbershopPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardScroll <HeroBillboardScroll
tag="Premium Grooming" tag="Premium Grooming"
tagIcon={Zap}
title="Master Your Look" title="Master Your Look"
description="Experience precision barbering with our team of skilled professionals. Crafted cuts, classic shaves, and complete grooming solutions." description="Experience precision barbering with our team of skilled professionals. Crafted cuts, classic shaves, and complete grooming solutions."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767461718181-733b3cgz.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1767461718181-733b3cgz.jpg"
@@ -56,8 +57,8 @@ export default function BarbershopPage() {
href: "contact" href: "contact"
}, },
{ {
text: "Learn More", text: "Call Now",
href: "services" onClick: () => window.open("tel:+1234567890", "_self")
} }
]} ]}
/> />
@@ -97,6 +98,10 @@ export default function BarbershopPage() {
{ {
text: "View Full Menu", text: "View Full Menu",
href: "contact" href: "contact"
},
{
text: "Book Service",
href: "contact"
} }
]} ]}
/> />
@@ -216,6 +221,8 @@ export default function BarbershopPage() {
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqBase <FaqBase
tag="Help"
tagIcon={HelpCircle}
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Have questions about our services, pricing, or booking? Find answers here." description="Have questions about our services, pricing, or booking? Find answers here."
textboxLayout="default" textboxLayout="default"