Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 14:49:48 +00:00
2 changed files with 28 additions and 58 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } 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 mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Lake Mahopac Landscaping & Lawncare | Professional Lawn Care Services", description: "Professional landscaping & lawn care services in Mahopac, NY. Trusted by 50+ customers. Free quote, fast service, fair pricing. Call (845) 628-5169 today.", keywords: "landscaping Mahopac, lawn care Mahopac, landscape design NY, lawn maintenance, Putnam County landscaping", openGraph: {
title: "Lake Mahopac Landscaping & Lawncare", description: "Professional landscaping and lawn care services in Mahopac, NY. Get your free quote today.", siteName: "Lake Mahopac Landscaping & Lawncare", type: "website"},
twitter: {
card: "summary_large_image", title: "Lake Mahopac Landscaping & Lawncare | Mahopac, NY", description: "Professional lawn care and landscaping services. Fast scheduling, fair pricing, 5.0★ rated."},
robots: {
index: true,
follow: true,
},
};
title: "Lake Mahopac Landscaping", description: "Professional lawn care and landscaping services in Mahopac, NY"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -30,13 +30,13 @@ export default function LandingPage() {
<NavbarStyleCentered
brandName="Lake Mahopac"
navItems={[
{ name: "Services", id: "services" },
{ name: "Why Us", id: "why-us" },
{ name: "Gallery", id: "gallery" },
{ name: "Reviews", id: "reviews" },
{ name: "Contact", id: "contact" }
{ name: "Services", id: "/services" },
{ name: "Why Us", id: "/why-us" },
{ name: "Gallery", id: "/gallery" },
{ name: "Reviews", id: "/reviews" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Free Quote", href: "contact" }}
button={{ text: "Get Free Quote", href: "/contact" }}
/>
</div>
@@ -52,7 +52,7 @@ export default function LandingPage() {
]}
enableKpiAnimation={true}
buttons={[
{ text: "Get a Free Quote", href: "contact" },
{ text: "Get a Free Quote", href: "/contact" },
{ text: "Call Now: (845) 628-5169", href: "tel:+18456285169" }
]}
mediaAnimation="slide-up"
@@ -211,7 +211,7 @@ export default function LandingPage() {
text="Ready to transform your yard? Get your free landscaping quote today and see what professional landscaping can do for your Mahopac property."
animationType="entrance-slide"
buttons={[
{ text: "Request Free Quote", href: "#contact" },
{ text: "Request Free Quote", href: "/contact" },
{ text: "Call (845) 628-5169", href: "tel:+18456285169" }
]}
background={{ variant: "plain" }}
@@ -226,34 +226,34 @@ export default function LandingPage() {
columns={[
{
title: "Services", items: [
{ label: "Lawn Maintenance", href: "#services" },
{ label: "Landscaping Design", href: "#services" },
{ label: "Property Cleanups", href: "#services" },
{ label: "Shrub & Bush Trimming", href: "#services" }
{ label: "Lawn Maintenance", href: "/services" },
{ label: "Landscaping Design", href: "/services" },
{ label: "Property Cleanups", href: "/services" },
{ label: "Shrub & Bush Trimming", href: "/services" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#why-us" },
{ label: "Our Work", href: "#gallery" },
{ label: "Customer Reviews", href: "#reviews" },
{ label: "Contact", href: "#contact" }
{ label: "About Us", href: "/why-us" },
{ label: "Our Work", href: "/gallery" },
{ label: "Customer Reviews", href: "/reviews" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Service Area", items: [
{ label: "Mahopac, NY", href: "#" },
{ label: "Lake Mahopac", href: "#" },
{ label: "Carmel, NY", href: "#" },
{ label: "Putnam County", href: "#" }
{ label: "Mahopac, NY", href: "/" },
{ label: "Lake Mahopac", href: "/" },
{ label: "Carmel, NY", href: "/" },
{ label: "Putnam County", href: "/" }
]
},
{
title: "Contact", items: [
{ label: "Phone: (845) 628-5169", href: "tel:+18456285169" },
{ label: "Email: info@lakemahopaclandscaping.com", href: "mailto:info@lakemahopaclandscaping.com" },
{ label: "Mahopac, NY", href: "#" },
{ label: "5.0★ Rating - 50+ Reviews", href: "#" }
{ label: "Mahopac, NY", href: "/" },
{ label: "5.0★ Rating - 50+ Reviews", href: "/" }
]
}
]}