|
|
|
@@ -1,20 +1,55 @@
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
|
|
|
import { Poppins } from "next/font/google";
|
|
|
|
import "./globals.css";
|
|
|
|
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 = {
|
|
|
|
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({
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
children,
|
|
|
|
}: {
|
|
|
|
}: Readonly<{
|
|
|
|
children: React.ReactNode;
|
|
|
|
children: React.ReactNode;
|
|
|
|
}) {
|
|
|
|
}>) {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<html lang="en">
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
|
|
|
<body
|
|
|
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<Tag />
|
|
|
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
<script
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
__html: `
|
|
|
|
__html: `
|
|
|
|
@@ -1382,6 +1417,7 @@ export default function RootLayout({
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</body>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
</html>
|
|
|
|
</html>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|