Update src/app/page.tsx

This commit is contained in:
2026-03-04 20:34:16 +00:00
parent ac9e8d658a
commit 3655e77b6c

View File

@@ -25,9 +25,20 @@ import {
Users,
Star,
HelpCircle,
MapPin,
Phone,
MessageCircle,
} from "lucide-react";
export default function LandingPage() {
const handleWhatsAppClick = () => {
window.open("https://wa.me/27786332213?text=Hi%20Vato's%20Panel%20%26%20Paint%2C%20I'd%20like%20to%20get%20a%20quote", "_blank");
};
const handlePhoneClick = () => {
window.location.href = "tel:0786332213";
};
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -48,7 +59,8 @@ export default function LandingPage() {
{ name: "Services", id: "services" },
{ name: "Gallery", id: "gallery" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
]}
button={{
text: "078 633 2213", href: "tel:0786332213"
@@ -60,7 +72,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardGallery
title="Expert Panel Beating & Spray Painting in Durban"
description="Family-owned auto body shop restoring vehicles to factory finish. Insurance-approved repairs with free quotes. Same-day inspection available. Call now for immediate assistance."
description="Family-owned auto body shop restoring vehicles to factory finish. Insurance-approved repairs with free quotes. Same-day inspection available. Professional technicians with 15+ years experience."
tag="Durban's Trusted Auto Body Shop"
tagIcon={Shield}
tagAnimation="slide-up"
@@ -361,7 +373,7 @@ export default function LandingPage() {
animationType="entrance-slide"
buttons={[
{ text: "Call: 078 633 2213", href: "tel:0786332213" },
{ text: "Get Free Quote", href: "#contact" },
{ text: "WhatsApp Us", href: "https://wa.me/27786332213?text=Hi%20Vato's%20Panel%20%26%20Paint%2C%20I'd%20like%20to%20get%20a%20quote" },
]}
background={{ variant: "animated-grid" }}
useInvertedBackground={false}