Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${sourceSans3.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +74,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -119,7 +119,7 @@ export default function HomePage() {
|
||||
price: "$45.99",
|
||||
rating: 5,
|
||||
reviewCount: "2.3k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/different-kinds-raw-beans-marble_114579-39042.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/different-kinds-raw-beans-marble_114579-39042.jpg?_wi=1",
|
||||
imageAlt: "Premium hybrid corn seeds packet",
|
||||
},
|
||||
{
|
||||
@@ -129,7 +129,7 @@ export default function HomePage() {
|
||||
price: "$32.50",
|
||||
rating: 5,
|
||||
reviewCount: "1.8k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardener-repotting-houseplant_53876-125350.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardener-repotting-houseplant_53876-125350.jpg?_wi=1",
|
||||
imageAlt: "Organic NPK fertilizer bag",
|
||||
},
|
||||
{
|
||||
@@ -139,7 +139,7 @@ export default function HomePage() {
|
||||
price: "$28.75",
|
||||
rating: 4,
|
||||
reviewCount: "1.2k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tomatoes-celery-wooden-table-with-plastic-fork-shovel_23-2147844357.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tomatoes-celery-wooden-table-with-plastic-fork-shovel_23-2147844357.jpg?_wi=1",
|
||||
imageAlt: "Professional farm tools set",
|
||||
},
|
||||
]}
|
||||
@@ -216,7 +216,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Marcus Thompson farmer portrait",
|
||||
},
|
||||
{
|
||||
@@ -224,7 +224,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Sarah Chen sustainable farmer",
|
||||
},
|
||||
{
|
||||
@@ -232,7 +232,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "James Rodriguez agricultural cooperative",
|
||||
},
|
||||
{
|
||||
@@ -240,7 +240,7 @@ export default function HomePage() {
|
||||
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=1",
|
||||
imageAlt: "Elena Kowalski innovative farmer",
|
||||
},
|
||||
{
|
||||
@@ -248,7 +248,7 @@ export default function HomePage() {
|
||||
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=2",
|
||||
imageAlt: "David Patel farmer testimonial",
|
||||
},
|
||||
{
|
||||
@@ -256,7 +256,7 @@ export default function HomePage() {
|
||||
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=2",
|
||||
imageAlt: "Patricia Williams farmstead owner",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -52,7 +52,7 @@ export default function PricingPage() {
|
||||
title: "Homestead",
|
||||
price: "$0",
|
||||
period: "/month",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/different-kinds-raw-beans-marble_114579-39042.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/different-kinds-raw-beans-marble_114579-39042.jpg?_wi=5",
|
||||
imageAlt: "Homestead plan preview",
|
||||
button: {
|
||||
text: "Get Started",
|
||||
@@ -71,7 +71,7 @@ export default function PricingPage() {
|
||||
title: "Professional",
|
||||
price: "$49",
|
||||
period: "/month",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardener-repotting-houseplant_53876-125350.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardener-repotting-houseplant_53876-125350.jpg?_wi=5",
|
||||
imageAlt: "Professional plan features",
|
||||
button: {
|
||||
text: "Subscribe Now",
|
||||
@@ -91,7 +91,7 @@ export default function PricingPage() {
|
||||
title: "Cooperative",
|
||||
price: "$199",
|
||||
period: "/month",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tomatoes-celery-wooden-table-with-plastic-fork-shovel_23-2147844357.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tomatoes-celery-wooden-table-with-plastic-fork-shovel_23-2147844357.jpg?_wi=5",
|
||||
imageAlt: "Cooperative plan details",
|
||||
button: {
|
||||
text: "Contact Sales",
|
||||
|
||||
@@ -56,7 +56,7 @@ export default function ProductsPage() {
|
||||
rating: 5,
|
||||
reviewCount: "2.3k",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/different-kinds-raw-beans-marble_114579-39042.jpg",
|
||||
"http://img.b2bpic.net/free-photo/different-kinds-raw-beans-marble_114579-39042.jpg?_wi=2",
|
||||
imageAlt: "Premium hybrid corn seeds packet",
|
||||
},
|
||||
{
|
||||
@@ -67,7 +67,7 @@ export default function ProductsPage() {
|
||||
rating: 5,
|
||||
reviewCount: "1.8k",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/gardener-repotting-houseplant_53876-125350.jpg",
|
||||
"http://img.b2bpic.net/free-photo/gardener-repotting-houseplant_53876-125350.jpg?_wi=2",
|
||||
imageAlt: "Organic NPK fertilizer bag",
|
||||
},
|
||||
{
|
||||
@@ -78,7 +78,7 @@ export default function ProductsPage() {
|
||||
rating: 4,
|
||||
reviewCount: "1.2k",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/tomatoes-celery-wooden-table-with-plastic-fork-shovel_23-2147844357.jpg",
|
||||
"http://img.b2bpic.net/free-photo/tomatoes-celery-wooden-table-with-plastic-fork-shovel_23-2147844357.jpg?_wi=2",
|
||||
imageAlt: "Professional farm tools set",
|
||||
},
|
||||
{
|
||||
@@ -89,7 +89,7 @@ export default function ProductsPage() {
|
||||
rating: 5,
|
||||
reviewCount: "956",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/different-kinds-raw-beans-marble_114579-39042.jpg",
|
||||
"http://img.b2bpic.net/free-photo/different-kinds-raw-beans-marble_114579-39042.jpg?_wi=3",
|
||||
imageAlt: "Heirloom tomato seeds collection",
|
||||
},
|
||||
{
|
||||
@@ -100,7 +100,7 @@ export default function ProductsPage() {
|
||||
rating: 5,
|
||||
reviewCount: "1.4k",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/gardener-repotting-houseplant_53876-125350.jpg",
|
||||
"http://img.b2bpic.net/free-photo/gardener-repotting-houseplant_53876-125350.jpg?_wi=3",
|
||||
imageAlt: "Premium compost mix bag",
|
||||
},
|
||||
{
|
||||
@@ -111,7 +111,7 @@ export default function ProductsPage() {
|
||||
rating: 4,
|
||||
reviewCount: "723",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/tomatoes-celery-wooden-table-with-plastic-fork-shovel_23-2147844357.jpg",
|
||||
"http://img.b2bpic.net/free-photo/tomatoes-celery-wooden-table-with-plastic-fork-shovel_23-2147844357.jpg?_wi=3",
|
||||
imageAlt: "Professional digging spade",
|
||||
},
|
||||
]}
|
||||
@@ -134,7 +134,7 @@ export default function ProductsPage() {
|
||||
price: "$0",
|
||||
period: "/month",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/different-kinds-raw-beans-marble_114579-39042.jpg",
|
||||
"http://img.b2bpic.net/free-photo/different-kinds-raw-beans-marble_114579-39042.jpg?_wi=4",
|
||||
imageAlt: "Homestead plan preview",
|
||||
button: { text: "Get Started", href: "#" },
|
||||
features: [
|
||||
@@ -151,7 +151,7 @@ export default function ProductsPage() {
|
||||
price: "$49",
|
||||
period: "/month",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/gardener-repotting-houseplant_53876-125350.jpg",
|
||||
"http://img.b2bpic.net/free-photo/gardener-repotting-houseplant_53876-125350.jpg?_wi=4",
|
||||
imageAlt: "Professional plan features",
|
||||
button: { text: "Subscribe Now", href: "#" },
|
||||
features: [
|
||||
@@ -169,7 +169,7 @@ export default function ProductsPage() {
|
||||
price: "$199",
|
||||
period: "/month",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/tomatoes-celery-wooden-table-with-plastic-fork-shovel_23-2147844357.jpg",
|
||||
"http://img.b2bpic.net/free-photo/tomatoes-celery-wooden-table-with-plastic-fork-shovel_23-2147844357.jpg?_wi=4",
|
||||
imageAlt: "Cooperative plan details",
|
||||
button: { text: "Contact Sales", href: "#" },
|
||||
features: [
|
||||
|
||||
Reference in New Issue
Block a user