diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index c97fbd6..7d1526d 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,56 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Inter_Tight } 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 interTight = Inter_Tight({
- variable: "--font-inter-tight", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "A&E Lawn Care - Professional Lawn Services in Richmond Hill, ON", description: "Expert lawn care and landscaping services in Richmond Hill, Ontario. Professional mowing, maintenance, and landscaping with 10+ years of experience.", keywords: "lawn care Richmond Hill, landscaping Ontario, grass maintenance, lawn service", openGraph: {
- title: "A&E Lawn Care - Richmond Hill", description: "Professional lawn care services transforming outdoor spaces in Richmond Hill, Ontario.", siteName: "A&E Lawn Care", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/unrecognizable-male-gardener-pushing-modern-lawn-mower-while-walking-grass-view-handyman_7502-10570.jpg", alt: "A&E Lawn Care Services"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "A&E Lawn Care - Richmond Hill", description: "Professional lawn care services in Richmond Hill, Ontario.", images: ["http://img.b2bpic.net/free-photo/unrecognizable-male-gardener-pushing-modern-lawn-mower-while-walking-grass-view-handyman_7502-10570.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "A&E Lawn Care | Professional Lawn Maintenance in Richmond Hill", description: "Expert lawn care services in Richmond Hill, Ontario. Weekly mowing, seasonal care, and more with 98% client satisfaction."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-