Merge version_2 into main #2
@@ -1,46 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Vazquez Complete Lawn Care & Landscaping - Professional Service", description: "Professional lawn care and landscaping services for residential and commercial properties. Reliable, detailed yard maintenance with guaranteed satisfaction.", keywords: "lawn care, landscaping, lawn maintenance, mulch installation, sod installation, professional yard service", metadataBase: new URL("https://vazquezlawncareandlandscape.com"),
|
||||
alternates: {
|
||||
canonical: "https://vazquezlawncareandlandscape.com"},
|
||||
openGraph: {
|
||||
title: "Vazquez Complete Lawn Care & Landscape", description: "Professional lawn care and landscaping that elevates your property", url: "https://vazquezlawncareandlandscape.com", siteName: "Vazquez Complete Lawn Care & Landscape", type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Vazquez Complete Lawn Care & Landscape", description: "Professional lawn care and landscaping services"},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Vazquez Complete Lawn Care & Landscape", description: "Professional lawn care and landscaping services"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1408,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -189,7 +189,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Get Your Free Estimate"
|
||||
title="Complete the Form Below"
|
||||
title="Get Your Free Estimate"
|
||||
description="Tell us about your lawn care and landscaping needs. We'll follow up within 24 hours with a customized quote."
|
||||
inputPlaceholder="Enter your email address"
|
||||
buttonText="Get Free Estimate"
|
||||
@@ -232,4 +232,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user