diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5ee96e4..d9a42b3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,39 +1,1428 @@ import type { Metadata } from "next"; -import { Playfair_Display, Lato } from "next/font/google"; -import "./styles/variables.css"; -import "./styles/base.css"; +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 playfairDisplay = Playfair_Display({ - variable: "--font-playfair-display", subsets: ["latin"], - weight: ["400", "500", "600", "700", "800", "900"], +const halant = Halant({ + variable: "--font-halant", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], }); -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +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: "Premier landscaping, lawn care, and pressure washing services across Atlanta. NKOSI is your trusted Black-owned partner for residential and commercial landscape solutions."}; + 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} +