6 Commits

Author SHA1 Message Date
de410c1688 Update src/app/page.tsx 2026-03-12 05:30:02 +00:00
471b912b6d Merge version_2 into main
Merge version_2 into main
2026-03-12 05:28:22 +00:00
a57b8f07d2 Update src/app/page.tsx 2026-03-12 05:28:18 +00:00
1a11003f72 Merge version_1 into main
Merge version_1 into main
2026-03-12 05:26:50 +00:00
63abc6a8d6 Merge version_1 into main
Merge version_1 into main
2026-03-12 05:26:25 +00:00
05b2f4f189 Merge version_1 into main
Merge version_1 into main
2026-03-12 05:25:31 +00:00

View File

@@ -9,7 +9,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Calendar, Camera, Scissors, Sparkles, Star, Users } from "lucide-react";
import { Calendar, Camera, Scissors, Sparkles, Star, Users, MapPin } from "lucide-react";
export default function LandingPage() {
return (
@@ -48,7 +48,7 @@ export default function LandingPage() {
description="Experience precision grooming and timeless style in our premium barbershop. Expert barbers dedicated to giving you the perfect cut, every time."
buttons={[
{ text: "Book Your Cut", href: "contact" },
{ text: "View Services", href: "services" }
{ text: "Book Your Appointment", href: "services" }
]}
buttonAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
@@ -202,10 +202,10 @@ export default function LandingPage() {
tagIcon={Calendar}
tagAnimation="slide-up"
title="Book Your Appointment Today"
description="Call us or visit our location to schedule your grooming session. Walk-ins also welcome!"
description="Located at 123 Main St, open Mon-Sat 10am-8pm. Call us at (555) 123-4567 or visit our location to schedule your grooming session. Walk-ins also welcome!"
buttons={[
{ text: "Call Now", href: "tel:+1234567890" },
{ text: "Visit Us", href: "#" }
{ text: "Call Now", href: "tel:+15551234567" },
{ text: "Get Directions", href: "https://maps.google.com" }
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}
@@ -222,4 +222,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}