diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 53e9226..b492e64 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -111,7 +111,7 @@ export default function AboutPage() { name: "Marcus Thompson", handle: "@marcusfarming", testimonial: "AgroHub's premium seeds increased my corn yield by 23% this season. The quality and support are exceptional.", - imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-man-talking-phone_23-2148233454.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-man-talking-phone_23-2148233454.jpg?_wi=3", imageAlt: "Marcus Thompson farmer portrait", }, { @@ -119,7 +119,7 @@ export default function AboutPage() { name: "Sarah Chen", handle: "@sarahorganicfarm", testimonial: "Finally found a supplier that truly understands sustainable farming. Their organic fertilizers are game-changers.", - imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-ecofriendly-person_23-2149125176.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-ecofriendly-person_23-2149125176.jpg?_wi=3", imageAlt: "Sarah Chen sustainable farmer", }, { @@ -127,7 +127,7 @@ export default function AboutPage() { name: "James Rodriguez", handle: "@rodriguezcooperative", testimonial: "We've partnered with AgroHub for our entire cooperative. Reliable, professional, and competitive pricing.", - imageSrc: "http://img.b2bpic.net/free-photo/woman-man-picking-tomatoes_1398-4240.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/woman-man-picking-tomatoes_1398-4240.jpg?_wi=2", imageAlt: "James Rodriguez agricultural cooperative", }, { @@ -135,7 +135,7 @@ export default function AboutPage() { name: "Elena Kowalski", handle: "@elenafarmtech", testimonial: "Their tools and equipment are top-notch. The educational resources helped me modernize my farming operations.", - imageSrc: "http://img.b2bpic.net/free-photo/male-florist-using-digital-tablet-while-taking-care-flowers-plant-nursery_637285-1545.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/male-florist-using-digital-tablet-while-taking-care-flowers-plant-nursery_637285-1545.jpg?_wi=2", imageAlt: "Elena Kowalski innovative farmer", }, { @@ -143,7 +143,7 @@ export default function AboutPage() { name: "David Patel", handle: "@davidgrower", testimonial: "Best customer service in the agricultural supply industry. They stand behind every product they sell.", - imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-man-talking-phone_23-2148233454.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/low-angle-view-man-talking-phone_23-2148233454.jpg?_wi=4", imageAlt: "David Patel farmer testimonial", }, { @@ -151,7 +151,7 @@ export default function AboutPage() { name: "Patricia Williams", handle: "@patriciafarmstead", testimonial: "The variety and availability of products is impressive. Everything I need for successful harvests in one place.", - imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-ecofriendly-person_23-2149125176.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-ecofriendly-person_23-2149125176.jpg?_wi=4", imageAlt: "Patricia Williams farmstead owner", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..3e0f65d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,57 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } 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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "AgroHub - Premium Agricultural E-commerce Platform", + description: "Shop quality seeds, fertilizers, and farming tools from trusted agricultural suppliers. Expert guidance and wholesale options for farmers nationwide.", + keywords: "agricultural supplies, farming equipment, organic seeds, fertilizers, farm tools, agricultural e-commerce, farmer marketplace, sustainable farming", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "AgroHub - Agricultural E-commerce & Farmer Marketplace", + description: "Premium agricultural products, expert support, and a community of farmers committed to sustainable agriculture.", + url: "https://agrohub.com", + siteName: "AgroHub", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/front-view-girl-holding-tablet_23-2148617241.jpg", + alt: "Sustainable agricultural landscape - AgroHub", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "AgroHub - Agricultural E-commerce", + description: "Quality seeds, tools, and expert farming guidance for sustainable agriculture", + images: ["http://img.b2bpic.net/free-photo/front-view-girl-holding-tablet_23-2148617241.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +60,9 @@ export default function RootLayout({ return ( - + {children}