Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-08 01:10:58 +00:00
2 changed files with 8 additions and 43 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Raleway } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Angelo's Mobile Detailing | Professional Car Detailing Service", description: "Professional mobile car detailing at your home or workplace. 5-star rated service for cars, trucks, SUVs, and specialty vehicles. Call (936) 499-1064 for a free quote.", keywords: "mobile car detailing, truck detailing, car interior detailing, ceramic coating, professional car wash, local detailing service", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Angelo's Mobile Detailing | Premium Car Care Comes To You", description: "Professional mobile detailing service. 5-star rated. Free quotes available. Call (936) 499-1064.", url: "https://angelos-mobile-detailing.com", siteName: "Angelo's Mobile Detailing", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ad9QaSI26EHQxX7jWaZfy0EY9O/uploaded-1772931341591-ns2wsgge.png", alt: "Angelo's Mobile Detailing Professional Service"},
],
type: "website"},
twitter: {
card: "summary_large_image", title: "Angelo's Mobile Detailing | Professional Car Care", description: "Mobile car detailing service with 5-star ratings. Professional interior and exterior detailing.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ad9QaSI26EHQxX7jWaZfy0EY9O/uploaded-1772931341591-ns2wsgge.png"],
},
};
title: "Angelo's Mobile Detailing", description: "Professional Mobile Car Detailing That Comes To You. Premium interior and exterior detailing for cars, trucks, and SUVs — done at your home or workplace."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -44,8 +44,8 @@ export default function LandingPage() {
logoText="Angelo's Mobile Detailing"
description="Professional Mobile Car Detailing That Comes To You. Premium interior and exterior detailing for cars, trucks, and SUVs — done at your home or workplace."
buttons={[
{ text: "Call Now", href: "tel:(936)499-1064" },
{ text: "Get a Free Quote", href: "#contact" }
{ text: "Schedule Detailing Today", href: "#contact" },
{ text: "Call Now", href: "tel:(936)499-1064" }
]}
buttonAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}