Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b9e6cd8280 | |||
| b0087a8e33 | |||
| 128fcb655a | |||
| e572ed1dbf | |||
| 5a869942aa | |||
| 091429fb7d | |||
| 12603d40c3 | |||
| 4b0f0a8f53 |
@@ -1,55 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Figtree } 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 halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const figtree = Figtree({
|
||||
variable: "--font-figtree", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
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: {
|
||||
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"],
|
||||
},
|
||||
};
|
||||
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."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ export default function LandingPage() {
|
||||
rating={5}
|
||||
ratingText="Trusted by Hundreds of Satisfied Customers"
|
||||
buttons={[
|
||||
{ text: "Get a Quote", href: "#contact" },
|
||||
{ text: "Get Free Accident Assessment", href: "#contact" },
|
||||
{ text: "Learn More", href: "#about" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -117,13 +117,13 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "15+", title: "Years of Excellence in Accident Repair", items: [
|
||||
"Certified technicians with specialist training", "100+ vehicles restored annually", "5-star customer satisfaction rating"
|
||||
id: "1", value: "500+", title: "Successful Accident Repairs Completed", items: [
|
||||
"All vehicle makes and models", "Insurance approved repairs", "Quality guarantee on all work"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "2", value: "500+", title: "Successful Accident Repairs Completed", items: [
|
||||
"All vehicle makes and models", "Insurance approved repairs", "Quality guarantee on all work"
|
||||
id: "2", value: "15+", title: "Years of Excellence in Accident Repair", items: [
|
||||
"Certified technicians with specialist training", "100+ vehicles restored annually", "5-star customer satisfaction rating"
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user