// Hero section — full-bleed vineyard image with overlay & strong type function Hero() { return (
{/* image */}
{/* gradient overlay */}
{/* navy bottom band w grain */}
{/* content */}
Erasmus+ • KA220-VET • 2023–2026

Learn to irrigate
the vineyard.

A free European training course on intelligent water management for winegrowers, technical advisors and the next generation of viticulture. Twenty hours of e-learning, four languages, a network of pilot farms across France, Italy and Spain.

{/* meta row at bottom */}
{[ ["20h", "of e-learning"], ["6", "thematic chapters"], ["4", "languages available"], ["3", "countries · network of pilot farms"], ].map(([k, v], i) => (
{k}
{v}
))}
{/* EU flag corner */}
Co-funded by the
Erasmus+ Programme
of the European Union
); } function EUFlag() { // 12 stars EU flag (simplified) const stars = []; for (let i = 0; i < 12; i++) { const a = (i / 12) * Math.PI * 2 - Math.PI / 2; stars.push( ); } return ( {stars} ); } window.Hero = Hero; window.EUFlag = EUFlag;