diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 051af00..3295310 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,59 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Montserrat } from "next/font/google";
+import "./styles/variables.css";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
-const montserrat = Montserrat({
- variable: "--font-montserrat", subsets: ["latin"],
-});
-
export const metadata: Metadata = {
- title: "Panel Beating & Spray Painting Durban | Vato's Auto Body Shop", description: "Expert panel beating, spray painting & collision repair in Durban. Insurance-approved shop with 15+ years experience. Free quotes, same-day service. Call 078 633 2213.", keywords: "panel beating durban, auto body shop durban, spray painting durban, collision repair, vehicle damage repair bellair", metadataBase: new URL("https://vatospanel.co.za"),
- alternates: {
- canonical: "https://vatospanel.co.za"},
+ title: "Vato's Panel & Paint | Auto Body Repair Durban", description: "Expert panel beating, spray painting & collision repairs in Durban. Insurance-approved auto body shop with 15+ years experience. Free quotes available.", keywords: [
+ "panel beating durban", "spray painting durban", "auto body repair durban", "collision repair", "car dent removal", "vehicle restoration", "insurance approved repairs"],
+ authors: [{ name: "Vato's Panel & Paint" }],
openGraph: {
- title: "Vato's Panel and Paint - Durban's Trusted Auto Body Shop", description: "Expert panel beating and spray painting services. Insurance-approved repairs with 12-month warranty. Free quotes available.", url: "https://vatospanel.co.za", siteName: "Vato's Panel and Paint", images: [
- {
- url: "http://img.b2bpic.net/free-photo/car-being-taking-care-workshop_23-2149580555.jpg", alt: "Professional vehicle repair and restoration"},
- ],
- type: "website"},
- twitter: {
- card: "summary_large_image", title: "Expert Auto Body Repair in Durban", description: "Panel beating, spray painting & collision repair. 15+ years trusted service.", images: ["http://img.b2bpic.net/free-photo/engineer-inspects-car-overhead-lift_482257-76181.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
+ title: "Vato's Panel & Paint | Auto Body Repair Durban", description: "Professional panel beating and spray painting services in Durban", type: "website", locale: "en_ZA"},
};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 02bbc4b..4d31e1f 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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 (