Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 860bafa804 | |||
| c2bfd2dadf | |||
| d4be7600c1 | |||
| 52e746daf1 |
@@ -1,19 +1,24 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Poppins } from "next/font/google";
|
|
||||||
import { Raleway } from "next/font/google";
|
import { Raleway } from "next/font/google";
|
||||||
|
import { Halant } from "next/font/google";
|
||||||
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const poppins = Poppins({
|
|
||||||
variable: "--font-poppins", subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const raleway = Raleway({
|
const raleway = Raleway({
|
||||||
variable: "--font-raleway", subsets: ["latin"],
|
variable: "--font-raleway", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const halant = Halant({
|
||||||
|
variable: "--font-halant", subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const inter = Inter({
|
||||||
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "ATFZGARAGE | Mobile Mechanic Services", description: "Professional mobile mechanic services at your location. Expert automotive repairs, maintenance, and diagnostics. Convenient, honest, and affordable.", keywords: "mobile mechanic, car repair, automotive services, roadside assistance, vehicle maintenance, brake repair, engine diagnostics", openGraph: {
|
title: "ATFZGARAGE | Mobile Mechanic Services", description: "Professional mobile mechanic services at your location. Expert automotive repairs, maintenance, and diagnostics. Convenient, honest, and affordable.", keywords: "mobile mechanic, car repair, automotive services, roadside assistance, vehicle maintenance, brake repair, engine diagnostics", openGraph: {
|
||||||
title: "ATFZGARAGE Mobile Mechanic Services", description: "Professional automotive repairs delivered to your location. Convenient, honest, and affordable mechanical services.", siteName: "ATFZGARAGE", type: "website", images: [
|
title: "ATFZGARAGE Mobile Mechanic Services", description: "Professional automotive repairs delivered to your location. Convenient, honest, and affordable mechanical services.", siteName: "ATFZGARAGE", type: "website", images: [
|
||||||
@@ -40,7 +45,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${poppins.variable} ${raleway.variable} antialiased`}
|
className={`${raleway.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ export default function ATFZGaragePage() {
|
|||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="small"
|
contentWidth="small"
|
||||||
sizing="mediumLargeSizeMediumTitles"
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
background="fluid"
|
background="circleGradient"
|
||||||
cardStyle="layered-gradient"
|
cardStyle="layered-gradient"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
@@ -45,7 +45,7 @@ export default function ATFZGaragePage() {
|
|||||||
<HeroLogoBillboardSplit
|
<HeroLogoBillboardSplit
|
||||||
logoText="ATFZGARAGE"
|
logoText="ATFZGARAGE"
|
||||||
description="Professional mobile mechanic services delivered to your location. Convenient, honest, and affordable repairs for all vehicle types."
|
description="Professional mobile mechanic services delivered to your location. Convenient, honest, and affordable repairs for all vehicle types."
|
||||||
background={{ variant: "fluid" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Book Service Now", href: "contact" },
|
{ text: "Book Service Now", href: "contact" },
|
||||||
{ text: "Learn More", href: "services" }
|
{ text: "Learn More", href: "services" }
|
||||||
@@ -83,6 +83,7 @@ export default function ATFZGaragePage() {
|
|||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/happy-mechanic-greeting-with-his-african-american-coworker-auto-repair-shop_637285-11601.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/happy-mechanic-greeting-with-his-african-american-coworker-auto-repair-shop_637285-11601.jpg"
|
||||||
imageAlt="ATFZGARAGE professional mechanic team"
|
imageAlt="ATFZGARAGE professional mechanic team"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -92,8 +93,8 @@ export default function ATFZGaragePage() {
|
|||||||
description="From routine maintenance to complex repairs, ATFZGARAGE handles it all with expertise and professionalism."
|
description="From routine maintenance to complex repairs, ATFZGARAGE handles it all with expertise and professionalism."
|
||||||
tag="Our Services"
|
tag="Our Services"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground={false}
|
||||||
gridVariant="uniform-4-items"
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user