From f5b2c8d012454e2fd4b788e9c1ebe58c2f7f9d06 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 07:01:34 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index e951e58..fd3e7cb 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -105,7 +105,7 @@ export default function AboutPage() { icon: Globe, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/woman-artist-painting-with-oil-paints-field_1303-9539.jpg" + imageSrc="http://img.b2bpic.net/free-photo/woman-artist-painting-with-oil-paints-field_1303-9539.jpg?_wi=2" imageAlt="farmer examining soil health data" mediaAnimation="slide-up" imagePosition="right" From 3b45834e9ce3ea42ddfdfa6d2aaef860f8e6a07e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 07:01:34 +0000 Subject: [PATCH 2/5] Update src/app/impact/page.tsx --- src/app/impact/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/impact/page.tsx b/src/app/impact/page.tsx index cbaed02..ff25bad 100644 --- a/src/app/impact/page.tsx +++ b/src/app/impact/page.tsx @@ -117,7 +117,7 @@ export default function ImpactPage() { "Ingrain's monitoring system transformed how we manage soil health. We've increased yield by 22% while reducing chemical inputs. The data insights are invaluable.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/young-beautiful-florist-posing-smiling-flowers_176420-2056.jpg", + "http://img.b2bpic.net/free-photo/young-beautiful-florist-posing-smiling-flowers_176420-2056.jpg?_wi=2", imageAlt: "professional woman farmer portrait", }, { @@ -128,7 +128,7 @@ export default function ImpactPage() { "The marketplace connection has opened doors we never expected. We're now selling carbon credits and premium regenerative products directly to conscious brands.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/medium-shot-serious-man-looking-away_23-2148233380.jpg", + "http://img.b2bpic.net/free-photo/medium-shot-serious-man-looking-away_23-2148233380.jpg?_wi=2", imageAlt: "professional man agriculture expert", }, { @@ -139,7 +139,7 @@ export default function ImpactPage() { "The collaboration platform bridges the gap between farmers and researchers perfectly. We've gathered more actionable field data in six months than in years of traditional trials.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/smiling-dentist-white-coat_1098-21354.jpg", + "http://img.b2bpic.net/free-photo/smiling-dentist-white-coat_1098-21354.jpg?_wi=2", imageAlt: "research scientist woman portrait", }, { @@ -150,7 +150,7 @@ export default function ImpactPage() { "As a traditional farmer, I was skeptical of tech. But Ingrain's interface is genuinely user-friendly. My kids and I are now collaborating on data-driven decisions.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/man-taking-notices-sunflower-field_23-2148233482.jpg", + "http://img.b2bpic.net/free-photo/man-taking-notices-sunflower-field_23-2148233482.jpg?_wi=2", imageAlt: "experienced farmer man portrait", }, { @@ -161,7 +161,7 @@ export default function ImpactPage() { "The environmental tracking is exceptional. We can now demonstrate real carbon sequestration and biodiversity improvements with verified data.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/wind-farms-fields_23-2149154399.jpg", + "http://img.b2bpic.net/free-photo/wind-farms-fields_23-2149154399.jpg?_wi=2", imageAlt: "professional woman climate scientist", }, { @@ -172,7 +172,7 @@ export default function ImpactPage() { "Ingrain represents the future of agriculture. Their vision aligns with ours—sustainable, profitable, and scalable. Outstanding platform.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/successful-working-woman-office-manager-suit-cross-arms-chest-looking-with-confidence_1258-117890.jpg", + "http://img.b2bpic.net/free-photo/successful-working-woman-office-manager-suit-cross-arms-chest-looking-with-confidence_1258-117890.jpg?_wi=2", imageAlt: "young entrepreneur technology professional", }, ]} From 76801a89710a91e8a231659723999ca324d97660 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 07:01:35 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b64f44..440999c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Inter_Tight } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const interTight = Inter_Tight({ variable: "--font-inter-tight", @@ -20,6 +24,32 @@ const interTight = Inter_Tight({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "Ingrain World - Regenerating Soil, Restoring Life", + description: "Advanced platform for sustainable agriculture connecting farmers with soil health data, marketplace, and research collaboration.", + keywords: "sustainable agriculture, soil health, regenerative farming, carbon credits, agritech", + metadataBase: new URL("https://ingrain.world"), + alternates: { + canonical: "https://ingrain.world", + }, + openGraph: { + title: "Ingrain World - Regenerating Soil, Restoring Life", + description: "Advanced platform for sustainable agriculture connecting farmers with soil health data, marketplace, and research collaboration.", + url: "https://ingrain.world", + siteName: "Ingrain World", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Ingrain World - Regenerating Soil, Restoring Life", + description: "Advanced platform for sustainable agriculture connecting farmers with soil health data, marketplace, and research collaboration.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +58,9 @@ export default function RootLayout({ return ( - + {children}