Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-05-25 05:45:02 +00:00

View File

@@ -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 (
@@ -38,7 +38,7 @@ export default function LandingPage() {
]}
brandName="Razorhead"
button={{
text: "Book Now", href: "https://booksy.com/en-us/1063043_razorhead-barbershop_barber-shop_38106_chesapeake"}}
text: "(757) 609-4001", href: "tel:+17576094001"}}
/>
</div>
@@ -50,6 +50,8 @@ export default function LandingPage() {
buttons={[
{
text: "Book Now", href: "https://booksy.com/en-us/1063043_razorhead-barbershop_barber-shop_38106_chesapeake"},
{
text: "(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" },
@@ -69,7 +71,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 +146,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,10 +160,12 @@ 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>
@@ -172,10 +176,10 @@ export default function LandingPage() {
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>
);
}
}