Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-03-04 04:27:45 +00:00
2 changed files with 13 additions and 45 deletions

View File

@@ -1,59 +1,28 @@
import type { Metadata } from "next";
import { Figtree } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "A Cut Above Lawn & Landscape | Professional Lawn Care Houston", description: "Professional lawn care and landscaping services in Houston. 4.9★ rated. Fair pricing, reliable service, 24/7 availability. Get your free estimate today.", keywords: "lawn care near me, landscaping Houston, lawn mowing service, yard cleanup, professional landscaper", metadataBase: new URL("https://acutabove.com"),
alternates: {
canonical: "https://acutabove.com"
},
openGraph: {
title: "A Cut Above Lawn & Landscape | Professional Lawn Care Houston", description: "Professional lawn care and landscaping services in Houston. 4.9★ rated with 120+ reviews. Fair pricing, reliable service.", url: "https://acutabove.com", siteName: "A Cut Above Lawn & Landscape", type: "website", images: [
{
url: "https://acutabove.com/og-image.jpg", alt: "A Cut Above Lawn & Landscape - Professional Service"
}
]
},
twitter: {
card: "summary_large_image", title: "A Cut Above Lawn & Landscape", description: "Professional lawn care and landscaping services in Houston.", images: ["https://acutabove.com/twitter-image.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "A Cut Above - Professional Lawn Care & Landscaping", description: "Reliable lawn care, landscaping, and yard cleanup services in Houston. Fair pricing, professional team, 24/7 availability."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${figtree.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -62,7 +62,7 @@ export default function LandingPage() {
}
]}
buttons={[
{ text: "Call (832) 818-4122", href: "tel:(832)818-4122" },
{ text: "Get Free Estimate", href: "#contact" },
{ text: "Get Free Estimate", href: "#contact" }
]}
buttonAnimation="slide-up"