3 Commits

Author SHA1 Message Date
e067ea9135 Switch to version 1: modified src/app/page.tsx 2026-03-05 09:52:31 +00:00
2ff5dcfb24 Switch to version 1: modified src/app/layout.tsx 2026-03-05 09:52:31 +00:00
a58073defa Merge version_3 into main
Merge version_3 into main
2026-03-05 09:49:50 +00:00
2 changed files with 42 additions and 7 deletions

View File

@@ -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 (
<html lang="en">
<body className={inter.className}>{children}
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1382,6 +1417,7 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -74,7 +74,6 @@ export default function LandingPage() {
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
metricValueClassName="font-extrabold text-emerald-600 dark:text-emerald-400"
/>
</div>