Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4e52be843e | |||
| 280a5e27b5 | |||
| e2ccecd21d | |||
| 65d12671d1 | |||
| bfc2b4b7a2 | |||
| 9da3877889 | |||
| 0f906cbbfd |
@@ -1,74 +1,27 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Open_Sans } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const openSans = Open_Sans({
|
const geist = Geist({
|
||||||
variable: "--font-open-sans",
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const halant = Halant({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-halant",
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "AGRIIYUG - Smart Farming Platform for Indian Farmers",
|
title: "AGRIIYUG - Smart Farming Platform", description: "Empower your farm with AI-powered insights, market data, and community support"};
|
||||||
description: "AGRIIYUG is the complete smart farming ecosystem for Indian farmers. Real-time market prices, AI disease detection, soil health analytics, and community support.",
|
|
||||||
keywords: "smart farming, agriculture technology, farmer app, crop disease detection, market prices, sustainable farming, India",
|
|
||||||
metadataBase: new URL("https://agriiyug.com"),
|
|
||||||
alternates: {
|
|
||||||
canonical: "https://agriiyug.com",
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "AGRIIYUG - Empower Your Farm with Smart Technology",
|
|
||||||
description: "Join 50,000+ farmers transforming agriculture with AI insights, real-time market data, and community support.",
|
|
||||||
siteName: "AGRIIYUG",
|
|
||||||
type: "website",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATyts8ufploeCLpIYcN05N219n/a-modern-indian-farmer-using-a-smartphon-1772631158132-0c9a14e2.png",
|
|
||||||
alt: "AGRIIYUG Smart Farming Platform",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "AGRIIYUG - Smart Farming Platform",
|
|
||||||
description: "Empower Indian farmers with AI-driven insights and real-time market data",
|
|
||||||
images: [
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATyts8ufploeCLpIYcN05N219n/a-modern-indian-farmer-using-a-smartphon-1772631158132-0c9a14e2.png",
|
|
||||||
],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${openSans.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1437,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -210,8 +210,8 @@ export default function HomePage() {
|
|||||||
{/* How It Works Section */}
|
{/* How It Works Section */}
|
||||||
<div id="how-it-works" data-section="how-it-works">
|
<div id="how-it-works" data-section="how-it-works">
|
||||||
<ProductCardOne
|
<ProductCardOne
|
||||||
title="How AGRIIYUG Works"
|
title="Quick Onboarding"
|
||||||
description="Simple steps to transform your farming with our smart platform."
|
description="Join AGRIIYUG in minutes and start transforming your farming with our smart platform."
|
||||||
tag="Getting Started"
|
tag="Getting Started"
|
||||||
tagIcon={CheckCircle}
|
tagIcon={CheckCircle}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
@@ -221,13 +221,13 @@ export default function HomePage() {
|
|||||||
gridVariant="three-columns-all-equal-width"
|
gridVariant="three-columns-all-equal-width"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Download App", price: "Free", imageSrc:
|
id: "1", name: "Download App", price: "1 minute", imageSrc:
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATyts8ufploeCLpIYcN05N219n/mobile-smartphone-displaying-agriiyug-ap-1772631158054-2a79208c.png", imageAlt: "Download AGRIIYUG app from play store"},
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATyts8ufploeCLpIYcN05N219n/mobile-smartphone-displaying-agriiyug-ap-1772631158054-2a79208c.png", imageAlt: "Download AGRIIYUG app from play store"},
|
||||||
{
|
{
|
||||||
id: "2", name: "Create Profile", price: "2 min", imageSrc:
|
id: "2", name: "Create Profile", price: "2 minutes", imageSrc:
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATyts8ufploeCLpIYcN05N219n/farmer-creating-profile-on-agriiyug-app--1772631158335-faf20c61.png", imageAlt: "Create your farmer profile"},
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATyts8ufploeCLpIYcN05N219n/farmer-creating-profile-on-agriiyug-app--1772631158335-faf20c61.png", imageAlt: "Create your farmer profile"},
|
||||||
{
|
{
|
||||||
id: "3", name: "Start Earning", price: "Ongoing", imageSrc:
|
id: "3", name: "Start Earning", price: "Immediately", imageSrc:
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATyts8ufploeCLpIYcN05N219n/happy-indian-farmer-celebrating-successf-1772631158004-1bc8dbd9.png", imageAlt: "Maximize your farm profits with insights"},
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATyts8ufploeCLpIYcN05N219n/happy-indian-farmer-celebrating-successf-1772631158004-1bc8dbd9.png", imageAlt: "Maximize your farm profits with insights"},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -297,7 +297,7 @@ export default function HomePage() {
|
|||||||
<ContactCenter
|
<ContactCenter
|
||||||
tag="Newsletter"
|
tag="Newsletter"
|
||||||
title="Stay Connected with AGRIIYUG"
|
title="Stay Connected with AGRIIYUG"
|
||||||
description="Subscribe to receive updates on new features, farming tips, market insights, and exclusive offers for our community."
|
description="Get weekly market price alerts, pest prevention tips, and exclusive equipment deals to maximize your farm's productivity and profitability."
|
||||||
tagIcon={Mail}
|
tagIcon={Mail}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user