Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e572ed1dbf | |||
| 5a869942aa | |||
| 091429fb7d | |||
| 12603d40c3 | |||
| 4b0f0a8f53 |
@@ -1,55 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Figtree } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const geist = Geist({
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
|
||||||
|
|
||||||
const figtree = Figtree({
|
|
||||||
variable: "--font-figtree", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Contact A Spay Accident Repair Centre | Expert Vehicle Restoration", description: "Professional accident repair and vehicle restoration services. Certified technicians, state-of-the-art equipment, and 15+ years of excellence.", keywords: "accident repair, vehicle restoration, car body repair, collision repair, auto repair shop, accident damage repair", robots: {
|
title: "Contact A Spay - Expert Accident Repair Services", description: "Professional accident repair and vehicle restoration services with certified technicians and state-of-the-art equipment."};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Contact A Spay Accident Repair Centre", description: "Expert accident repair and vehicle restoration services with certified technicians.", type: "website", siteName: "Contact A Spay Accident Repair Centre", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/two-auto-mechanics-cooperating-while-repairing-tire-customer-s-car-auto-repair-shop_637285-4255.jpg", alt: "Professional repair facility"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Contact A Spay Accident Repair Centre", description: "Expert accident repair and vehicle restoration services", images: [
|
|
||||||
"http://img.b2bpic.net/free-photo/two-auto-mechanics-cooperating-while-repairing-tire-customer-s-car-auto-repair-shop_637285-4255.jpg"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1417,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -117,13 +117,13 @@ export default function LandingPage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1", value: "15+", title: "Years of Excellence in Accident Repair", items: [
|
id: "1", value: "500+", title: "Successful Accident Repairs Completed", items: [
|
||||||
"Certified technicians with specialist training", "100+ vehicles restored annually", "5-star customer satisfaction rating"
|
"All vehicle makes and models", "Insurance approved repairs", "Quality guarantee on all work"
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "2", value: "500+", title: "Successful Accident Repairs Completed", items: [
|
id: "2", value: "15+", title: "Years of Excellence in Accident Repair", items: [
|
||||||
"All vehicle makes and models", "Insurance approved repairs", "Quality guarantee on all work"
|
"Certified technicians with specialist training", "100+ vehicles restored annually", "5-star customer satisfaction rating"
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user