// Training & Network section const CHAPTERS = [ { n: "01", t: "Calculating the irrigation need of the vine" }, { n: "02", t: "Evaluating the costs of intelligent irrigation" }, { n: "03", t: "Installing & maintaining the equipment" }, { n: "04", t: "Tools to control irrigation & water quality" }, { n: "05", t: "Additional equipment for fertigation" }, { n: "06", t: "Avoiding common irrigation mistakes" }, ]; function Training() { const [active, setActive] = React.useState(0); return (
Training & Network

Two ways
to learn.

VINIRRIG combines digital know-how with on-the-ground practice โ€” an online curriculum paired with field demonstrations on exemplary vineyards across the Mediterranean.

{/* Two columns: e-learning vs network */}
{/* e-learning */}
Pillar 01

E-learning course

Around 20 hours of online training, available in EN/FR/IT/ES. Six chapters answering the key questions winegrowers and advisors face on irrigation.

{CHAPTERS.map((c, i) => ( ))}
{/* Network */}
Pillar 02

Network of pilot farms

Best Irrigation Practice Vineyards in France, Italy and Spain host field training and demonstrations adapted to each regional context โ€” combining digital know-how with hands-on experience.

{[ { c: "FR", n: "France", host: "IFV ยท Ag-Irrig" }, { c: "IT", n: "Italy", host: "Forma Farm" }, { c: "ES", n: "Spain", host: "LabFerrer" }, ].map((co) => (
{co.c}
{co.n}
{co.host}
))}
); } window.Training = Training;