diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c0a0831..4f7af1f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,22 +1,49 @@ -import type { Metadata } from 'next'; -import { Inter } from 'next/font/google'; -import './globals.css'; +import type { Metadata } from "next"; +import { Halant } from "next/font/google"; +import { Inter } from "next/font/google"; +import { Open_Sans } 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 openSans = Open_Sans({ + variable: "--font-open-sans", subsets: ["latin"], +}); export const metadata: Metadata = { - title: 'AGRO\'S - Premium Manure Solutions for Modern Agriculture', - description: 'High-quality, sustainably sourced manure and compost products for farmers and gardeners. Trusted for over 20 years.', + title: "AGRO'S - Premium Agricultural Manure & Compost Solutions", description: "Quality manure products for farms and gardens. Sustainable, tested, and delivered fast. Trusted agricultural supplier for soil health and crop yields.", keywords: "manure, compost, agricultural fertilizer, organic manure, farm supplies, crop soil amendment, bulk delivery", openGraph: { + title: "AGRO'S - Premium Manure Solutions for Agriculture", description: "Sustainable, high-quality manure products to boost soil health and crop yields. Trusted by farmers nationwide.", siteName: "AGRO'S", type: "website"}, + twitter: { + card: "summary_large_image", title: "AGRO'S Premium Manure Store", description: "Quality agricultural manure and compost solutions for sustainable farming."}, + robots: { + index: true, + follow: true, + }, }; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - -
{children} + +