// Into the Wild — Hero, Nav, Manifesto, Stats const { useState, useEffect, useRef } = React; function Logo({ size = 28 }) { return ( ); } function Nav({ solid }) { return ( ); } function Hero() { const [time, setTime] = useState(''); useEffect(() => { const t = () => { const d = new Date(); setTime(d.toUTCString().slice(17, 22) + ' UTC'); }; t(); const i = setInterval(t, 30000); return () => clearInterval(i); }, []); return (
Edition 04 · Fragas do Eume, Galicia · Summer 2026 {''}

Leave the algorithm. Find an Atlantic rainforest, and your better self.

Into the Wild is an Erasmus+ adventure project that has walked three Caminos. For our fourth edition we're trading waymarked paths for the deep Atlantic forest of Fragas do Eume. Six days. You show up with a backpack. We handle the rest.

DATES 17 · 24 July 2026
Length 6 days
Location Galicia
Cost to you €0
); } function Marquee() { const items = [ "No wifi · No agenda · No phones after 9pm", "Cooked on fire", "Slept under stars", "Walked with strangers", "Got lost. On purpose.", "Funded by Erasmus+", "Est. 2023"]; const full = [...items, ...items, ...items, ...items]; return (
{full.map((t, i) => {t} )}
); } function Manifesto() { return (
01 The Idea

We think Europe is
better learned outside.

The best classroom has no roof, no power outlet, and no-one asking whether you've done the reading. Just a path, a map that's slightly wrong, and strangers who will be friends by Wednesday.

Into the Wild is an Erasmus+ experiment that began in 2023 on the Camino de Santiago. Three editions already, over 60 participants thirsty of adventure. Each edition left us with the same question... what if we make it even more challenging?

So this year we're staying in one forest. Edition 04 is six days in Fragas do Eume, the last Atlantic rainforest in continental Europe. Three days of teambuilding, two days of experiential adventure, one day of reflection. Nobody graduates. Everyone leaves changed.

The Xeracion team
); } function Stats() { const stats = [ { val: "04", unit: "edition", label: "Fourth gathering since 2023" }, { val: "6", unit: "days", label: "In the Fragas do Eume forest" }, { val: "20", unit: "participants", label: "Ages 18–30, 5 countries" }, { val: "€0", unit: "", label: "Erasmus+ covers everything" }]; return (
{stats.map((s, i) =>
{s.val}{s.unit}
{s.label}
)}
); } Object.assign(window, { Nav, Hero, Marquee, Manifesto, Stats, Logo });