import React from 'react'; import { Link } from 'react-router-dom'; const HomePage = () => { const features = [ { title: "News Hub", description: "Discover regional policy updates and best practices in food loss reduction and bioeconomy innovation.", icon: "📰", link: "/news", gradient: "from-bio-green to-green-500" }, { title: "Open Data", description: "Access datasets on cold-chain gaps, processing capacity, and surplus hotspots to inform interventions.", icon: "📊", link: "/datasets", gradient: "from-bio-blue to-blue-500" }, { title: "Matchmaking", description: "Connect with partners, funders, and implementers to develop collaborative pilot projects.", icon: "🤝", link: "/matchmaking", gradient: "from-bio-purple to-purple-500" }, { title: "Directory", description: "Find and connect with stakeholders across the bioeconomy ecosystem.", icon: "📖", link: "/directory", gradient: "from-bio-orange to-orange-500" } ]; return (
{/* Enhanced hero section with more vibrant gradient */}

Connecting Stakeholders to Accelerate Bioeconomy Solutions

Reducing Food Loss & Waste through data, partnerships, and pilot projects

Explore Datasets Join Matchmaking
{/* Enhanced features section with colorful gradients */}

Our Platform Features

{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
{/* Enhanced CTA section with vibrant gradient */}

Join Our Growing Network

Be part of a global community working to transform agrifood systems through bioeconomy solutions.

Explore Directory
); }; export default HomePage;