Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 754001834d | |||
| ce4435c802 | |||
| 8e90debe80 | |||
| 197c371fc7 | |||
| 7c4d32b751 |
@@ -1,53 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { DM_Sans } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Vargas Brothers Detailing | Premium Auto Detailing Services", description: "Professional automotive detailing in our area. Expert exterior, interior, and ceramic coating services for all vehicle types. 12K+ satisfied customers.", keywords: "car detailing, auto detailing, paint protection, ceramic coating, vehicle detailing, professional car wash", metadataBase: new URL("https://vargasbrothersdetailing.com"),
|
title: "Vargas Brothers Detailing", description: "Professional automotive detailing services"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://vargasbrothersdetailing.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Vargas Brothers Detailing | Premium Auto Detailing", description: "Transform your vehicle with professional detailing services. Exterior, interior, and ceramic coating expertise.", url: "https://vargasbrothersdetailing.com", siteName: "Vargas Brothers Detailing", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/man-polishing-car-with-orbital-applicator_1303-30576.jpg", alt: "Vargas Brothers professional detailing"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Vargas Brothers Detailing", description: "Premium automotive detailing services for discerning vehicle owners.", images: ["http://img.b2bpic.net/free-photo/man-polishing-car-with-orbital-applicator_1303-30576.jpg"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${dmSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -184,7 +184,7 @@ export default function LandingPage() {
|
|||||||
imageAlt="Premium detailing results"
|
imageAlt="Premium detailing results"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
inputPlaceholder="Enter your email"
|
inputPlaceholder="Enter your email to book"
|
||||||
buttonText="Get Started"
|
buttonText="Get Started"
|
||||||
termsText="We respect your privacy. Unsubscribe at any time."
|
termsText="We respect your privacy. Unsubscribe at any time."
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user