Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-14 10:42:02 +00:00
5 changed files with 76 additions and 37 deletions

View File

@@ -142,21 +142,21 @@ export default function AboutPage() {
id: "team-1",
name: "James Mitchell",
role: "CEO & Founder - Agricultural Expert",
imageSrc: "http://img.b2bpic.net/free-photo/country-music-interpret-singing-outdoors_23-2149498455.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/country-music-interpret-singing-outdoors_23-2149498455.jpg?_wi=3",
imageAlt: "Portrait of James Mitchell",
},
{
id: "team-2",
name: "Sarah Chen",
role: "CTO & Co-Founder - Technology Innovation",
imageSrc: "http://img.b2bpic.net/free-photo/view-woman-working-agricultural-sector-celebrate-labour-day-women_23-2151252031.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-woman-working-agricultural-sector-celebrate-labour-day-women_23-2151252031.jpg?_wi=3",
imageAlt: "Portrait of Sarah Chen",
},
{
id: "team-3",
name: "Robert Thompson",
role: "Head of Farmer Relations - Sustainability Lead",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-holding-mug-with-milk_23-2148673023.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-holding-mug-with-milk_23-2148673023.jpg?_wi=3",
imageAlt: "Portrait of Robert Thompson",
},
]}

View File

@@ -61,42 +61,42 @@ export default function FarmersPage() {
id: "farmer-1",
name: "James Mitchell",
role: "Organic Vegetable Specialist",
imageSrc: "http://img.b2bpic.net/free-photo/country-music-interpret-singing-outdoors_23-2149498455.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/country-music-interpret-singing-outdoors_23-2149498455.jpg?_wi=2",
imageAlt: "Portrait of James Mitchell",
},
{
id: "farmer-2",
name: "Sarah Chen",
role: "Heritage Crop Curator",
imageSrc: "http://img.b2bpic.net/free-photo/view-woman-working-agricultural-sector-celebrate-labour-day-women_23-2151252031.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-woman-working-agricultural-sector-celebrate-labour-day-women_23-2151252031.jpg?_wi=2",
imageAlt: "Portrait of Sarah Chen",
},
{
id: "farmer-3",
name: "Robert Thompson",
role: "Sustainable Livestock Farmer",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-holding-mug-with-milk_23-2148673023.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-holding-mug-with-milk_23-2148673023.jpg?_wi=2",
imageAlt: "Portrait of Robert Thompson",
},
{
id: "farmer-4",
name: "Lisa Martinez",
role: "Fruit & Berry Grower",
imageSrc: "http://img.b2bpic.net/free-photo/head-shot-happy-beautiful-young-woman-posing-indoors-looking-camera-smiling_74855-10218.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/head-shot-happy-beautiful-young-woman-posing-indoors-looking-camera-smiling_74855-10218.jpg?_wi=2",
imageAlt: "Portrait of Lisa Martinez",
},
{
id: "farmer-5",
name: "David Okonkwo",
role: "Market Gardener & Educator",
imageSrc: "http://img.b2bpic.net/free-photo/yes-very-good-smiling-beautiful-woman-showing-thumbs-up-give-approval-recommending-quality-product-standing-white-background_176420-50291.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/yes-very-good-smiling-beautiful-woman-showing-thumbs-up-give-approval-recommending-quality-product-standing-white-background_176420-50291.jpg?_wi=2",
imageAlt: "Portrait of David Okonkwo",
},
{
id: "farmer-6",
name: "Grace Peterson",
role: "Dairy Cooperative Lead",
imageSrc: "http://img.b2bpic.net/free-photo/man-came-woman-with-gift-home_1398-3803.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-came-woman-with-gift-home_1398-3803.jpg?_wi=2",
imageAlt: "Portrait of Grace Peterson",
},
]}

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } 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 { Mulish } 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 mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "FarmConnect - Direct Farm to Consumer Marketplace",
description: "Connect with local farmers, buy fresh organic produce, earn loyalty rewards, and support sustainable agriculture. Direct farmer-consumer marketplace.",
keywords: "agricultural marketplace, organic produce, local farmers, farm to table, agricultural ecommerce, loyalty rewards, sustainable farming",
metadataBase: new URL("https://farmconnect.local"),
alternates: {
canonical: "https://farmconnect.local",
},
openGraph: {
title: "FarmConnect - Fresh Farm Produce Direct to You",
description: "Join thousands supporting local sustainable farming. Direct farmer connections, fresh produce, loyalty rewards.",
url: "https://farmconnect.local",
siteName: "FarmConnect",
type: "website",
images: [
{
url: "https://farmconnect.local/og-image-hero.jpg",
alt: "FarmConnect - Farm Fresh Marketplace",
},
],
},
twitter: {
card: "summary_large_image",
title: "FarmConnect - Direct Farm Marketplace",
description: "Support sustainable farming. Fresh organic produce, farmer profiles, loyalty rewards.",
images: ["https://farmconnect.local/twitter-image.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -91,7 +91,7 @@ export default function HomePage() {
imageAlt: "Fresh farm produce in morning sunlight",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-bowl-wooden-surface_23-2147927266.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-bowl-wooden-surface_23-2147927266.jpg?_wi=1",
imageAlt: "Colorful organic vegetables harvest",
},
{
@@ -212,7 +212,7 @@ export default function HomePage() {
name: "Organic Heirloom Tomatoes",
price: "$12.99",
variant: "1 kg - Farm Fresh",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-bowl-wooden-surface_23-2147927266.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-bowl-wooden-surface_23-2147927266.jpg?_wi=2",
imageAlt: "Fresh heirloom tomatoes",
},
{
@@ -220,7 +220,7 @@ export default function HomePage() {
name: "Locally Grown Lettuce Mix",
price: "$8.49",
variant: "500g - Organic Certified",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-bowl-wooden-surface_23-2147927266.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-bowl-wooden-surface_23-2147927266.jpg?_wi=3",
imageAlt: "Fresh lettuce variety pack",
},
{
@@ -228,7 +228,7 @@ export default function HomePage() {
name: "Free-Range Eggs",
price: "$6.99",
variant: "Dozen - Farm Raised",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-bowl-wooden-surface_23-2147927266.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-bowl-wooden-surface_23-2147927266.jpg?_wi=4",
imageAlt: "Farm fresh eggs",
},
{
@@ -236,7 +236,7 @@ export default function HomePage() {
name: "Raw Honey Jar",
price: "$14.99",
variant: "500g - Unfiltered",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-bowl-wooden-surface_23-2147927266.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-bowl-wooden-surface_23-2147927266.jpg?_wi=5",
imageAlt: "Pure raw honey",
},
]}
@@ -266,21 +266,21 @@ export default function HomePage() {
id: "farmer-1",
name: "James Mitchell",
role: "Organic Vegetable Specialist",
imageSrc: "http://img.b2bpic.net/free-photo/country-music-interpret-singing-outdoors_23-2149498455.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/country-music-interpret-singing-outdoors_23-2149498455.jpg?_wi=1",
imageAlt: "Portrait of James Mitchell",
},
{
id: "farmer-2",
name: "Sarah Chen",
role: "Heritage Crop Curator",
imageSrc: "http://img.b2bpic.net/free-photo/view-woman-working-agricultural-sector-celebrate-labour-day-women_23-2151252031.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/view-woman-working-agricultural-sector-celebrate-labour-day-women_23-2151252031.jpg?_wi=1",
imageAlt: "Portrait of Sarah Chen",
},
{
id: "farmer-3",
name: "Robert Thompson",
role: "Sustainable Livestock Farmer",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-holding-mug-with-milk_23-2148673023.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-holding-mug-with-milk_23-2148673023.jpg?_wi=1",
imageAlt: "Portrait of Robert Thompson",
},
]}
@@ -384,7 +384,7 @@ export default function HomePage() {
name: "Maria Rodriguez",
role: "Home Chef & Food Blogger",
testimonial: "The quality of produce from FarmConnect is unmatched. I know exactly who grew my food and can often meet the farmers at events. It's changed how I cook and shop.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-photo-bearded-guy-smiling-gesturing-with-ok-sign-expressing-good-choice-being-isolated-graphite_171337-455.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-photo-bearded-guy-smiling-gesturing-with-ok-sign-expressing-good-choice-being-isolated-graphite_171337-455.jpg?_wi=1",
imageAlt: "Maria Rodriguez portrait",
icon: Heart,
},
@@ -393,7 +393,7 @@ export default function HomePage() {
name: "David Park",
role: "Sustainable Restaurant Owner",
testimonial: "Our restaurant's entire supply chain relies on FarmConnect. The consistency and quality help us deliver authentic farm-to-table experiences. Plus, the AgriCoins offset our produce costs.",
imageSrc: "http://img.b2bpic.net/free-photo/head-shot-happy-beautiful-young-woman-posing-indoors-looking-camera-smiling_74855-10218.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/head-shot-happy-beautiful-young-woman-posing-indoors-looking-camera-smiling_74855-10218.jpg?_wi=1",
imageAlt: "David Park portrait",
icon: Star,
},
@@ -402,7 +402,7 @@ export default function HomePage() {
name: "Emily Watson",
role: "Small-Scale Farmer",
testimonial: "FarmConnect gave me access to consumers without needing a massive operation. The direct connection means I can focus on quality, and I earn fair prices. Life-changing for our farm.",
imageSrc: "http://img.b2bpic.net/free-photo/yes-very-good-smiling-beautiful-woman-showing-thumbs-up-give-approval-recommending-quality-product-standing-white-background_176420-50291.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/yes-very-good-smiling-beautiful-woman-showing-thumbs-up-give-approval-recommending-quality-product-standing-white-background_176420-50291.jpg?_wi=1",
imageAlt: "Emily Watson portrait",
icon: Leaf,
},
@@ -411,7 +411,7 @@ export default function HomePage() {
name: "Thomas Lee",
role: "Health-Conscious Consumer",
testimonial: "I switched to FarmConnect to eat healthier. The transparency about farming practices and instant reward redemption keeps me engaged and saving money.",
imageSrc: "http://img.b2bpic.net/free-photo/man-came-woman-with-gift-home_1398-3803.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-came-woman-with-gift-home_1398-3803.jpg?_wi=1",
imageAlt: "Thomas Lee portrait",
icon: CheckCircle,
},
@@ -420,7 +420,7 @@ export default function HomePage() {
name: "Lisa Anderson",
role: "Eco-Activist",
testimonial: "Supporting sustainable farming feels meaningful on FarmConnect. Every purchase directly helps farmers, and the community features make it more than just shopping.",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=1",
imageAlt: "Lisa Anderson portrait",
icon: Zap,
},
@@ -429,7 +429,7 @@ export default function HomePage() {
name: "Marcus Johnson",
role: "Premium Subscriber",
testimonial: "The subscription was worth it just for the exclusive farmer events. I've learned so much and made genuine connections with the people feeding our community.",
imageSrc: "http://img.b2bpic.net/free-photo/pleased-hoppeful-curly-haired-woman-awaits-important-results-clenches-fists-celebration-relish-positive-news-smiles-happily-glad-achieve-goal-wears-pink-jumper-isolated-green-wall_273609-38428.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pleased-hoppeful-curly-haired-woman-awaits-important-results-clenches-fists-celebration-relish-positive-news-smiles-happily-glad-achieve-goal-wears-pink-jumper-isolated-green-wall_273609-38428.jpg?_wi=1",
imageAlt: "Marcus Johnson portrait",
icon: Award,
},

View File

@@ -206,7 +206,7 @@ export default function RewardsPage() {
name: "Jennifer Martinez",
role: "Premium Subscriber - 6 Months",
testimonial: "I've earned enough AgriCoins in just 6 months to offset my subscription fee and then some. Plus, the exclusive farmer events are amazing—I've learned so much about sustainable practices.",
imageSrc: "http://img.b2bpic.net/free-photo/head-shot-happy-beautiful-young-woman-posing-indoors-looking-camera-smiling_74855-10218.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/head-shot-happy-beautiful-young-woman-posing-indoors-looking-camera-smiling_74855-10218.jpg?_wi=3",
imageAlt: "Jennifer Martinez portrait",
icon: Trophy,
},
@@ -215,7 +215,7 @@ export default function RewardsPage() {
name: "Carlos Mendez",
role: "Casual Shopper - 1 Year",
testimonial: "Starting as a free member, I've accumulated thousands of AgriCoins just by buying fresh produce weekly. The reward system is generous and actually incentivizes me to shop more sustainably.",
imageSrc: "http://img.b2bpic.net/free-photo/yes-very-good-smiling-beautiful-woman-showing-thumbs-up-give-approval-recommending-quality-product-standing-white-background_176420-50291.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/yes-very-good-smiling-beautiful-woman-showing-thumbs-up-give-approval-recommending-quality-product-standing-white-background_176420-50291.jpg?_wi=3",
imageAlt: "Carlos Mendez portrait",
icon: Award,
},
@@ -224,7 +224,7 @@ export default function RewardsPage() {
name: "Sophie Laurent",
role: "Farmer Partner",
testimonial: "As a farmer, the rewards program gives my customers loyalty incentives to keep buying my products. The direct connection builds community and supports my business growth.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-photo-bearded-guy-smiling-gesturing-with-ok-sign-expressing-good-choice-being-isolated-graphite_171337-455.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-photo-bearded-guy-smiling-gesturing-with-ok-sign-expressing-good-choice-being-isolated-graphite_171337-455.jpg?_wi=2",
imageAlt: "Sophie Laurent portrait",
icon: Heart,
},
@@ -233,7 +233,7 @@ export default function RewardsPage() {
name: "David Wong",
role: "Premium Subscriber - 3 Months",
testimonial: "The 15% rewards rate as a premium member adds up quickly. I've already used my coins for free shipping and special product access. Worth every penny.",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-middle-aged-business-leader_1262-4823.jpg?_wi=2",
imageAlt: "David Wong portrait",
icon: Star,
},
@@ -242,7 +242,7 @@ export default function RewardsPage() {
name: "Lisa Chen",
role: "Referral Champion",
testimonial: "I referred friends and earned bonus coins. It's incredible how the program rewards loyalty and community building. I feel like I'm part of something meaningful.",
imageSrc: "http://img.b2bpic.net/free-photo/pleased-hoppeful-curly-haired-woman-awaits-important-results-clenches-fists-celebration-relish-positive-news-smiles-happily-glad-achieve-goal-wears-pink-jumper-isolated-green-wall_273609-38428.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/pleased-hoppeful-curly-haired-woman-awaits-important-results-clenches-fists-celebration-relish-positive-news-smiles-happily-glad-achieve-goal-wears-pink-jumper-isolated-green-wall_273609-38428.jpg?_wi=2",
imageAlt: "Lisa Chen portrait",
icon: Gift,
},
@@ -251,7 +251,7 @@ export default function RewardsPage() {
name: "Marcus Thompson",
role: "Premium Subscriber - 1 Year",
testimonial: "A year in and I'm still amazed at how much value the subscription provides. The rewards, exclusive events, and farmer connections make it a no-brainer investment in sustainable food.",
imageSrc: "http://img.b2bpic.net/free-photo/man-came-woman-with-gift-home_1398-3803.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-came-woman-with-gift-home_1398-3803.jpg?_wi=3",
imageAlt: "Marcus Thompson portrait",
icon: Award,
},