Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4ce28eced7 | |||
| f23a93ea80 | |||
| 4ea0a61b99 | |||
| c3a59662cd | |||
| 7c705c9a7f | |||
| a1f1099dd1 | |||
| 8d1da73235 |
@@ -1,57 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Raleway } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Professional Lawn Care Service Tennessee | Allen's Lawn Care", description: "5-star rated lawn care service in Tennessee. Mowing, landscaping, weed control & more. Free quotes. Reliable local professionals serving homeowners & businesses.", keywords: "lawn care near me, lawn mowing service, landscaping service, weed control, sod installation, lawn maintenance Tennessee, professional lawn care", metadataBase: new URL("https://allenslawncare.local"),
|
title: "Allen's Lawn Care - Professional Lawn Maintenance in Tennessee", description: "Professional lawn care services in Tennessee. Mowing, landscaping, and lawn maintenance you can trust."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://allenslawncare.local"},
|
|
||||||
openGraph: {
|
|
||||||
title: "Allen's Lawn Care - Professional Lawn Service Tennessee", description: "Your trusted local lawn care company. 5.0★ rated with 23+ reviews. Professional mowing, landscaping & lawn maintenance.", url: "https://allenslawncare.local", siteName: "Allen's Lawn Care", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/high-angle-shot-green-grass-daytime_181624-11303.jpg", alt: "Professional lawn care service"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Professional Lawn Care | Allen's Lawn Care", description: "5-star rated lawn care service. Free quotes available. Call now!", images: ["http://img.b2bpic.net/free-photo/high-angle-shot-green-grass-daytime_181624-11303.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={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -110,7 +110,7 @@ export default function LandingPage() {
|
|||||||
heading={[{ type: "text", content: "Why Choose Allen's Lawn Care" }]}
|
heading={[{ type: "text", content: "Why Choose Allen's Lawn Care" }]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Request Free Quote", href: "#contact" },
|
{ text: "Get Free Estimate", href: "#contact" },
|
||||||
{ text: "Call +1 931-797-7152", href: "tel:+19317977152" },
|
{ text: "Call +1 931-797-7152", href: "tel:+19317977152" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="none"
|
buttonAnimation="none"
|
||||||
@@ -144,11 +144,11 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
text="Ready to get your lawn looking amazing? Get your free lawn care quote today or give us a call. We're here to help!"
|
text="Get your free lawn care estimate today—call now or request a quote with no obligation. We're ready to help your lawn thrive!"
|
||||||
animationType="entrance-slide"
|
animationType="entrance-slide"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now: +1 931-797-7152", href: "tel:+19317977152" },
|
{ text: "Call Now: +1 931-797-7152", href: "tel:+19317977152" },
|
||||||
{ text: "Request Free Quote", href: "#quote" },
|
{ text: "Get Free Estimate", href: "#quote" },
|
||||||
]}
|
]}
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -216,4 +216,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user