6 Commits

Author SHA1 Message Date
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
3 changed files with 13 additions and 13 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #0a0a0a;;
--card: #1a1a1a;;
--foreground: #fffffae6;;
--primary-cta: #fde047;;
--secondary-cta: #1a1a1a;;
--accent: #737373;;
--background-accent: #737373;;
--background: #fafffb;;
--card: #f7fffa;;
--foreground: #001a0a;;
--primary-cta: #0a7039;;
--secondary-cta: #ffffff;;
--accent: #a8d9be;;
--background-accent: #6bbf8e;;
/* 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 { Zap } from "lucide-react";
export default function BarbershopPage() {
return (
@@ -46,6 +46,7 @@ export default function BarbershopPage() {
<div id="hero" data-section="hero">
<HeroBillboardScroll
tag="Premium Grooming"
tagIcon={Zap}
title="Master Your Look"
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"
@@ -56,8 +57,8 @@ export default function BarbershopPage() {
href: "contact"
},
{
text: "Call Now",
onClick: () => window.open("tel:+1234567890", "_self")
text: "Learn More",
href: "services"
}
]}
/>
@@ -66,7 +67,6 @@ export default function BarbershopPage() {
<div id="services" data-section="services">
<FeatureCardTwenty
tag="Our Services"
tagIcon={Tag}
title="Exceptional Grooming Services"
description="From classic haircuts to premium beard treatments, we deliver excellence in every service. Each client receives personalized attention and expert craftsmanship."
textboxLayout="default"
@@ -281,4 +281,4 @@ export default function BarbershopPage() {
</div>
</ThemeProvider>
);
}
}