diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 7e837b5..d38a377 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 1314edc..4854191 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -30,13 +30,13 @@ export default function LandingPage() {
@@ -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: "/" }
]
}
]}