Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b8718fa2a | |||
| 50ce13791e | |||
| 873e3b1eb3 | |||
| 8ff2a9cb2c | |||
| 6619663b51 | |||
| e56bfbaf7d | |||
| 4a8f11bd0a | |||
| 6371adc434 |
@@ -11,7 +11,7 @@ import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
import { Award, Clock, Star } from "lucide-react";
|
||||
import { Award, Clock, Star, Phone } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -30,6 +30,7 @@ export default function LandingPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ECfZ5wfBDIyilb79TgWXmmbPC4/uploaded-1779687970819-ilaaor4o.jpg"
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
@@ -46,13 +47,15 @@ export default function LandingPage() {
|
||||
<HeroBillboardCarousel
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Razorhead Barbershop"
|
||||
description="Precision Cuts. Great Vibes. Chesapeake's Best Fade."
|
||||
description="Precision Cuts. Great Vibes. Chesapeake's Best Fade. Call (757) 609-4001 for inquiries."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Now", href: "https://booksy.com/en-us/1063043_razorhead-barbershop_barber-shop_38106_chesapeake"},
|
||||
{
|
||||
text: "Call (757) 609-4001", href: "tel:+17576094001"}
|
||||
]}
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-holding-menorah_23-2149640723.jpg?_wi=1", imageAlt: "Barbershop interior" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ECfZ5wfBDIyilb79TgWXmmbPC4/uploaded-1779687970819-ilaaor4o.jpg", imageAlt: "Razorhead Logo" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/barber-shop-retro-vintage-style_1150-17931.jpg", imageAlt: "Barbershop atmosphere" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/male-barber-giving-his-client-nice-haircut_23-2149186489.jpg", imageAlt: "Modern grooming" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/customer-standing-front-mirror-barbershop_23-2148181953.jpg", imageAlt: "Precision work" },
|
||||
@@ -69,7 +72,7 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{ icon: Star, label: "Customer Rating", value: "4.9/5" },
|
||||
{ icon: Clock, label: "Reliability", value: "Always on time" },
|
||||
{ icon: Award, label: "Experience", value: "757 Top Rated" },
|
||||
{ icon: Phone, label: "Contact Us", value: "(757) 609-4001" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -144,7 +147,7 @@ export default function LandingPage() {
|
||||
faqs={[
|
||||
{ id: "1", title: "Where are you located?", content: "1128 Battlefield Blvd N, Unit 103, Chesapeake, VA 23320." },
|
||||
{ id: "2", title: "How do I book?", content: "Book your appointment via the Booksy app or our website booking link." },
|
||||
{ id: "3", title: "Is Martin the primary barber?", content: "Yes, Martin (Martinb) is our lead barber renowned for the best fades in the 757." },
|
||||
{ id: "3", title: "How can I call you?", content: "You can reach us at (757) 609-4001." },
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Everything you need to know about your appointment."
|
||||
@@ -158,24 +161,27 @@ export default function LandingPage() {
|
||||
background={{ variant: "radial-gradient" }}
|
||||
tag="Visit Us"
|
||||
title="Book Your Spot"
|
||||
description="Join the elite at Razorhead. Chesapeake's best fade awaits."
|
||||
description="Join the elite at Razorhead. Chesapeake's best fade awaits. Call (757) 609-4001 for inquiries."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Now", href: "https://booksy.com/en-us/1063043_razorhead-barbershop_barber-shop_38106_chesapeake"},
|
||||
{
|
||||
text: "Call (757) 609-4001", href: "tel:+17576094001"}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ECfZ5wfBDIyilb79TgWXmmbPC4/uploaded-1779687970819-ilaaor4o.jpg"
|
||||
logoText="RAZORHEAD BARBERSHOP"
|
||||
leftLink={{
|
||||
text: "Booksy Appointments", href: "https://booksy.com/en-us/1063043_razorhead-barbershop_barber-shop_38106_chesapeake"}}
|
||||
rightLink={{
|
||||
text: "1128 Battlefield Blvd N, Chesapeake, VA", href: "#"}}
|
||||
text: "(757) 609-4001 | 1128 Battlefield Blvd N", href: "tel:+17576094001"}}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user