diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 71ee7a6..d9a42b3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,30 +1,1429 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Halant } from "next/font/google"; +import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -const geist = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], +const halant = Halant({ + variable: "--font-halant", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], }); -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], +}); + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "NKOSI Landscaping | Atlanta's Trusted Black-Owned Lawn Care", description: "NKOSI Landscaping: Luxury residential & commercial lawn care, landscaping design, and pressure washing services across Atlanta. Get your free estimate today."}; + title: "NKOSI Landscaping | Atlanta's Premium Black-Owned Lawn Care", description: "Premium landscaping and lawn care services in Atlanta, GA. Residential & commercial services, pressure washing. Proudly Black-owned. Get your free estimate today!", keywords: "Atlanta landscaping, lawn care Atlanta, black-owned landscaping, pressure washing, residential landscape design, commercial lawn care Georgia", metadataBase: new URL("https://nkosilandscaping.com"), + alternates: { + canonical: "https://nkosilandscaping.com" + }, + openGraph: { + title: "NKOSI Landscaping | Atlanta's Premium Black-Owned Lawn Care", description: "Transform your Atlanta property with premium landscaping and lawn care services from NKOSI—locally trusted, proudly Black-owned.", url: "https://nkosilandscaping.com", siteName: "NKOSI Landscaping", type: "website", images: [ + { + url: "http://img.b2bpic.net/free-photo/sunny-day-park-landscape-green-grass-two-bicycles-standing-near-tree-sunbeams-lighting-up_1258-200490.jpg", alt: "NKOSI Landscaping - Premium Atlanta lawn care" + } + ] + }, + twitter: { + card: "summary_large_image", title: "NKOSI Landscaping | Atlanta's Premium Black-Owned Lawn Care", description: "Premium landscaping and lawn care services across Atlanta. Proudly Black-owned. Get your free estimate today!", images: ["http://img.b2bpic.net/free-photo/sunny-day-park-landscape-green-grass-two-bicycles-standing-near-tree-sunbeams-lighting-up_1258-200490.jpg"] + }, + robots: { + index: true, + follow: true + } +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( -
- {children} +