From 2ff5dcfb2431ee0b75a90414c5a87eb9777b7aed Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 09:52:31 +0000 Subject: [PATCH] Switch to version 1: modified src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 42 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2102586..7262eb9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,55 @@ import type { Metadata } from "next"; +import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } 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 poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); export const metadata: Metadata = { - title: "Heritage Farms - Modern Agriculture with Timeless Heritage", description: "Experience agriculture reimagined through premium design and cutting-edge technology. Heritage Farms bridges tradition with innovation."}; + title: "Heritage Farms | Modern Agriculture Innovation", description: "Reimagine agriculture through premium design and cutting-edge technology. Bridging farming tradition with modern innovation for 35+ years.", keywords: "sustainable agriculture, farming innovation, agricultural technology, precision farming, crop optimization", robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Heritage Farms | Modern Agriculture Innovation", description: "Experience agriculture reimagined. Premium solutions bridging tradition with innovation.", type: "website", siteName: "Heritage Farms", images: [ + { + url: "http://img.b2bpic.net/free-photo/sunset-landscape-photo-moravian-tuscany-czech-republic_1161-829.jpg", alt: "Modern agricultural landscape"}, + ], + }, + twitter: { + card: "summary_large_image", title: "Heritage Farms | Modern Agriculture", description: "Bridging farming tradition with cutting-edge innovation for sustainable growth.", images: ["http://img.b2bpic.net/free-photo/sunset-landscape-photo-moravian-tuscany-czech-republic_1161-829.jpg"], + }, +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + + {children} +