Merge version_2 into main #4
@@ -1,55 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Raleway } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "JMM Autos - Professional Auto Repair & Maintenance | Jamestown", description: "Elite auto repair and maintenance services in Jamestown Industrial Park. Expert diagnostics, maintenance, and repairs for all vehicle makes and models. Call 089 242 4499.", keywords: "auto repair, car maintenance, vehicle diagnostics, mechanic services, Jamestown, professional auto care", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "JMM Autos - Professional Auto Repair & Maintenance", description: "Elite auto repair and maintenance services in Jamestown Industrial Park", url: "https://jmmautos.com", siteName: "JMM Autos", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/cheerful-mechanic-standing-near-cars_23-2147897989.jpg", alt: "JMM Autos Professional Workshop"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "JMM Autos - Professional Auto Repair", description: "Expert auto repair and maintenance services", images: [
|
||||
"http://img.b2bpic.net/free-photo/cheerful-mechanic-standing-near-cars_23-2147897989.jpg"],
|
||||
},
|
||||
};
|
||||
title: "JMM Autos | Professional Mobile Mechanic Services", description: "Elite auto care at your doorstep. Professional vehicle diagnostics, maintenance, and repair services in Jamestown Industrial Park."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${raleway.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -7,7 +7,7 @@ import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
import { Wrench, Hammer, Shield } from "lucide-react";
|
||||
import { Wrench, Hammer, Shield, Clock, Smartphone, Award } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -98,6 +98,27 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Repairs", description: "Expert repairs for all vehicle makes and models", bentoComponent: "globe"
|
||||
},
|
||||
{
|
||||
title: "Why Trust Us", description: "Built on expertise, availability, and certified excellence", bentoComponent: "icon-info-cards", button: {
|
||||
text: "Learn More", href: "#about"
|
||||
}, ...{
|
||||
bentoComponent: "icon-info-cards" as const,
|
||||
items: [
|
||||
{
|
||||
icon: Clock,
|
||||
label: "24/7 Available", value: "Always Ready"
|
||||
},
|
||||
{
|
||||
icon: Smartphone,
|
||||
label: "Mobile Service", value: "On Location"
|
||||
},
|
||||
{
|
||||
icon: Award,
|
||||
label: "OBD Certified", value: "Expert Certified"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user