// Middle sections: Modules, Who it's for, Comparison, ROI function Modules() { const mods = [ { icon: , name: "Circular Route Optimizer", body: "Assembles 2–10 sequential loads into a closed loop that returns the truck to base. Scores every loop by net profit after fuel, tolls, ferry costs, mandatory rest under EU Reg. 561/2006, depreciation and taxes. Ranks the top three.", foot: "— Working prototype: lab.reexo.ai/circular_service", }, { icon: , name: "NLP Cargo Parser", body: "Reads freight orders directly from Telegram, WhatsApp and email in multiple languages. Extracts structured data, auto-requests missing fields, feeds the router. Trained on 95,000+ real orders.", foot: "— Cuts manual order entry by ~50%. Saves ~17 hours / dispatcher / month.", }, { icon: , name: "EU Compliance Engine", body: "Rest-stop planning under Regulation 561/2006. Cabotage tracking under the Mobility Package, with cool-off alerts per vehicle. CO₂ per shipment using GLEC Framework and ISO 14083.", foot: "— Every route Reexo proposes is legally executable.", }, { icon: , name: "Market Intelligence", body: "Demand heatmaps for the next 6–24 hours. Lane-level pricing intelligence. Terminal ratings. Predictive ETAs factoring traffic, weather and border delays.", foot: "— Built on Google Maps, HERE and 15 years of operational freight data.", }, { icon: , name: "Exchange API Integrations", body: "Plug Reexo into TIMOCOM, Trans.eu, Teleroute and Wtransnet. Pull orders across them in one place. Trans.eu and Teleroute have expressed preliminary interest in integrating.", foot: "— Activates after the Spanish S.L. is registered, Q2–Q3 2026.", }, ]; return (
THE PRODUCT

Five modules. One app. One bill.

Each one replaces something carriers currently pay for separately, or do by hand. A dispatcher, a route planner, a compliance check, a market read.

{mods.map((m,i)=>(
{m.icon}

{m.name}

{m.body}

{m.foot}
))}
); } function WhoItsFor() { const personas = [ { title: "Owner-operator — 1 truck.", body: "You drive it, you dispatch it, you book it. You lose 2–3 hours a day searching for loads. Reexo gives you those hours back and plans the way home." }, { title: "Small fleet — 2–15 trucks.", body: "Your spouse or a part-time dispatcher juggles WhatsApp, email and exchanges for 10–30 orders a day. Reexo replaces most of that workload and spreads profit evenly across drivers." }, { title: "Mid-sized fleet — 15–50 trucks.", body: "You need fleet dashboards, compliance, and a single view of routes across the team. Without paying enterprise TMS prices." }, ]; return (
WHO IT'S FOR

If you're the one negotiating the rate, Reexo is for you.

{personas.map((p,i)=>(

{p.title}

{p.body}

))}
); } function Comparison() { const competitors = ["TIMOCOM", "Trans.eu", "Wtransnet", "Teleroute"]; const rows = [ { feature: "Round-trip optimization", cells: [ "Single-leg match + return-load search", "Single-leg match (SmartMatch)", "Single-leg match + return-load search", "Single-leg AI recommendations", ], reexo: "2–10 leg closed loops, ranked by net profit", }, { feature: "Automatic order intake from informal channels", cells: [ "Email & PDF parsing in-platform (TIMOCOM AI, 2025)", "—", "—", "—", ], reexo: "Telegram, WhatsApp and email — NLP in multiple languages", }, { feature: "EU compliance inside route planning (561/2006, cabotage, CO₂)", cells: [ "Partial — separate cost calculator", "Partial — eco filters on route map", "—", "Partial — CO₂ partnership initiatives", ], reexo: "All three, built into every proposed route", }, { feature: "Who the product is designed around", cells: [ "Shipper-side marketplace liquidity", "Shipper-side marketplace liquidity", "Shipper-side marketplace liquidity", "Shipper-side marketplace liquidity", ], reexo: "The carrier's net profit per route", }, { feature: "Contract model", cells: [ "Monthly subscription available", "Monthly subscription available", "Annual-oriented", "Annual-oriented", ], reexo: "Monthly subscription, cancel any time", }, ]; return (
HOW WE COMPARE

The incumbents work for the shipper. We work for you.

Every major EU freight exchange has pieces of this. None has all of it, and none was designed around the carrier's net profit. Here is where Reexo is different, category by category. The claims about each incumbent are the ones they make themselves.

{/* Desktop table */}
{competitors.map((c,i)=>())} {rows.map((r,i)=>( {r.cells.map((c,j)=>( ))} ))}
Feature{c}Reexo
{r.feature}{c}{r.reexo}
{/* Mobile stacked */}
{rows.map((r,i)=>(
{r.feature}
    {competitors.map((c,j)=>(
  • {c} {r.cells[j]}
  • ))}
  • Reexo {r.reexo}
))}
Sources: TIMOCOM newsroom 2025, Trans.eu / SmartMatch docs 2025, Teleroute / Alpega 2022–2025, Wtransnet 2025. Accurate as of Q2 2026 — incumbents evolve; we keep this table current.
); } function ROI() { return (
THE MATH

One empty trip avoided a month, and Reexo has paid for itself three times over.

A single truck running 100,000 km a year at the Spanish average 24% empty rate wastes €28,000–36,000. Even a 5-point reduction in empty running, a conservative target grounded in 15 years of operational data on our existing platforms, puts €6,000–7,500 per truck back in the owner's pocket. Every year. A 10-point reduction doubles that.

Add saved dispatch time and fewer late-paying shippers, and most owner-operators clear a 14–22× return on a €30 subscription.

Subscription€30–50 / month
€360–600 / year
Empty-run savings€6,000–7,500 / yr
Dispatch time€1,200–1,500 / yr
Factoring savings€2,000–4,000 / yr

Return on spend14× – 22×
Payback period1–2 months
); } Object.assign(window, { Modules, WhoItsFor, Comparison, ROI });