5 Commits

Author SHA1 Message Date
17a06db1aa Merge version_3 into main
Merge version_3 into main
2026-03-12 18:29:12 +00:00
15f10c7e60 Update src/app/page.tsx 2026-03-12 18:29:08 +00:00
0e56f6b064 Update src/app/awards/page.tsx 2026-03-12 18:29:08 +00:00
c8cc3399a1 Merge version_2 into main
Merge version_2 into main
2026-03-12 18:22:14 +00:00
163589e2e1 Merge version_2 into main
Merge version_2 into main
2026-03-12 18:21:22 +00:00
2 changed files with 12 additions and 45 deletions

View File

@@ -36,39 +36,25 @@ export default function AwardsPage() {
brandName="HAUS" brandName="HAUS"
navItems={navItems} navItems={navItems}
button={{ button={{
text: "Book Now", text: "Book Now", href: "https://booksy.com"}}
href: "https://booksy.com",
}}
/> />
</div> </div>
<div id="awards" data-section="awards"> <div id="awards" data-section="awards">
<MetricCardOne <MetricCardOne
title="Industry Recognition" title="HAUS Won 2 Major Awards: Barbershop of the Year & Best Client Experience"
description="HAUS has been awarded multiple industry accolades for excellence in barbering and client experience" description="HAUS has been awarded multiple industry accolades for excellence in barbering and client experience"
tag="Awards" tag="Awards"
tagAnimation="slide-up" tagAnimation="slide-up"
metrics={[ metrics={[
{ {
id: "1", id: "1", value: "5", title: "Awards", description: "Salon of the Year & Client Experience", icon: Trophy,
value: "5",
title: "Awards",
description: "Salon of the Year & Client Experience",
icon: Trophy,
}, },
{ {
id: "2", id: "2", value: "1000+", title: "Satisfied Clients", description: "Premium grooming experiences delivered", icon: Users,
value: "1000+",
title: "Satisfied Clients",
description: "Premium grooming experiences delivered",
icon: Users,
}, },
{ {
id: "3", id: "3", value: "10+", title: "Years", description: "Excellence in barbering and community", icon: Award,
value: "10+",
title: "Years",
description: "Excellence in barbering and community",
icon: Award,
}, },
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
@@ -86,26 +72,11 @@ export default function AwardsPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
products={[ products={[
{ {
id: "1", id: "1", name: "Best Fade 2024", price: "Award Winner", imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-barbershop_23-2148506273.jpg?_wi=5", imageAlt: "Award-winning men modern haircut style"},
name: "Best Fade 2024",
price: "Award Winner",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-man-barbershop_23-2148506273.jpg?_wi=5",
imageAlt: "Award-winning men modern haircut style",
},
{ {
id: "2", id: "2", name: "Excellence Cut", price: "Certified", imageSrc: "http://img.b2bpic.net/free-photo/side-view-leather-barber-shop-chair_23-2148242807.jpg?_wi=5", imageAlt: "Award-winning professional men hairstyle"},
name: "Excellence Cut",
price: "Certified",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-leather-barber-shop-chair_23-2148242807.jpg?_wi=5",
imageAlt: "Award-winning professional men hairstyle",
},
{ {
id: "3", id: "3", name: "Premium Style", price: "Recognized", imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-with-long-mustache-after-haircut-barbershop_618663-44.jpg?_wi=5", imageAlt: "Award-winning men premium haircut"},
name: "Premium Style",
price: "Recognized",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-with-long-mustache-after-haircut-barbershop_618663-44.jpg?_wi=5",
imageAlt: "Award-winning men premium haircut",
},
]} ]}
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
animationType="slide-up" animationType="slide-up"
@@ -118,13 +89,9 @@ export default function AwardsPage() {
<FooterLogoReveal <FooterLogoReveal
logoText="HAUS" logoText="HAUS"
leftLink={{ leftLink={{
text: "Privacy Policy", text: "Privacy Policy", href: "#"}}
href: "#",
}}
rightLink={{ rightLink={{
text: "Terms of Service", text: "Terms of Service", href: "#"}}
href: "#",
}}
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>

View File

@@ -76,7 +76,7 @@ export default function HomePage() {
<div id="awards" data-section="awards"> <div id="awards" data-section="awards">
<MetricCardOne <MetricCardOne
title="Industry Recognition" title="HAUS Won 2 Major Awards: Barbershop of the Year & Best Client Experience"
description="HAUS has been awarded multiple industry accolades for excellence in barbering and client experience" description="HAUS has been awarded multiple industry accolades for excellence in barbering and client experience"
tag="Awards" tag="Awards"
tagIcon={Trophy} tagIcon={Trophy}
@@ -260,4 +260,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }