3 Commits

Author SHA1 Message Date
7c705c9a7f Update src/app/page.tsx 2026-03-07 17:52:32 +00:00
a1f1099dd1 Update src/app/layout.tsx 2026-03-07 17:52:32 +00:00
8d1da73235 Merge version_1 into main
Merge version_1 into main
2026-03-07 17:49:36 +00:00
2 changed files with 8 additions and 46 deletions

View File

@@ -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>
); );
} }

View File

@@ -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"
@@ -148,7 +148,7 @@ export default function LandingPage() {
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}