diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a686f3a..bc339d7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,1418 @@ import type { Metadata } from "next"; +import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Raleway } from "next/font/google"; import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -const inter = Inter({ 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 raleway = Raleway({ + variable: "--font-raleway", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "Greenedge Landscaping | Professional Outdoor Design", description: "Transform your outdoor space with expert landscaping services. Lawn mowing, garden design, mulch installation, and more since 2022."}; + title: "Professional Landscaping Services | GreenSpace Pro", description: "Expert landscaping company offering lawn mowing, garden design, mulch installation, and more. View our portfolio and get a free quote today.", keywords: "landscaping, lawn care, garden design, mulch, gutter cleaning, landscape design", robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Professional Landscaping Services | GreenSpace Pro", description: "Transform your outdoor space with expert landscaping services", siteName: "GreenSpace Pro", type: "website", images: [ + { + url: "http://img.b2bpic.net/free-photo/grass-background_1127-3418.jpg", alt: "Beautiful landscape project"}, + ], + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - -
{children} + +