2 Commits

Author SHA1 Message Date
281e8bf7d1 Update src/app/page.tsx 2026-03-05 09:49:45 +00:00
d3658a78d6 Update src/app/layout.tsx 2026-03-05 09:49:44 +00:00
2 changed files with 7 additions and 42 deletions

View File

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

View File

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