// confident-modern.jsx — Northius.net Confident Modern direction
const TWEAK_DEFAULTS = /*EDITMODE-BEGIN*/{
"heroTreatment": "video",
"cardLayout": "split",
"coral": "balanced",
"parallax": true,
"marquee": false,
"headline": "convertirte"
}/*EDITMODE-END*/;
const HEADLINES = {
convertirte: {
title: (<>
Learning isn't just knowing more.
It's becoming the professional
you want to be.
>),
lede: "Here you can see the pilots from the Northius group. Designed so you end up practising — not to add one more qualification to your CV."
},
ejercer: {
title: (<>
We don't train you to know more.
We train you to practise.
>),
lede: "Two pilot programmes from the Northius group. The difference between studying and working in what you want — in twelve weeks or in your own time."
},
diploma: {
title: (<>
Training that doesn't end in a diploma.
It ends in a job.
>),
lede: "Two pilot programmes from the Northius group. Designed for professionals who want to practise — not for certificate collectors."
}
};
/* ───────────── Logo (real Northius SVG file) ───────────── */
function NorthiusLogo({ height = 22, variant = "coral" }) {
return (
);
}
/* ───────────── Nav ───────────── */
function Nav() {
return (
);
}
/* ───────────── Why / About ───────────── */
function Why() {
return (
About Northius
13 brands. Shared trust.
northius.net is the group's new institutional site — where we premiere the pilots before they move into the main catalogue at northius.com.
Northius is the Spanish education group behind brands with decades of history and active communities today. Under the same umbrella you'll find Deusto Formación, Campus Training, CEAC —teaching at a distance from Spain for more than 80 years—, Tokio School, Nubika and Deusto Salud, among others.
Students currently studying
+65,000
Countries with presence
+15
Physical campuses
+45
since 1945
80+ years. And still the most modern in the group.
CEAC has been teaching at a distance since 1945 — when "online" wasn't even a word and homework was sent by post. Getting older here doesn't mean slowing down: it means decades of reinventing how people learn, ahead of everyone else.
Best specialised MBA in Spain. Three years running.
The MBA in Sport Management from Unisport tops the PortalMBA ranking in 2024, 2025 and 2026. And according to SportBusiness 2023, it's the best online sports management master's in Europe — and second in the world. With two in-person stages a year.
);
}
function Seats({ taken, total }) {
const pct = Math.round(taken / total * 100);
return (
Places {taken}/{total} filled · only {total - taken} available
);
}
/* Formats cohort_start_at from backend to "8 Sep 2026" (EN) or "TBD" if null */
function formatCohortDate(slug, fallback) {
const c = window.__COHORTS__ && window.__COHORTS__[slug];
// Mostrar FIN de cohorte (de matrícula) = INICIO DE CURSO — lo que le importa al alumno
// (petición Ricardo 2-jul). Fallback al inicio de matrícula si no hay deadline.
const iso = (c && (c.early_bird_ends_at || c.cohort_start_at)) || fallback || null;
if (!iso) return "TBD";
const d = new Date(iso);
if (isNaN(d.getTime())) return "TBD";
return new Intl.DateTimeFormat('en-GB', { day: 'numeric', month: 'short', year: 'numeric' }).format(d);
}
/* Reads a number (price) from __COHORTS__ with fallback if missing or invalid */
function cohortNum(slug, field, fallback) {
var c = window.__COHORTS__ && window.__COHORTS__[slug];
var n = c ? Number(c[field]) : NaN;
return (isFinite(n) && n > 0) ? n : fallback;
}
/* Formats an integer to euros with "," thousands separator (EN): 1490 → €1,490 */
function fmtEur(n) {
return '€' + String(n).replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}
/* ───────────── Programs ───────────── */
function Programs({ layout }) {
return (
Active pilots · Early Bird
Before the catalogue. Before its real price*
When the pilot ends, these programmes move to the main catalogue at northius.com with their final price. Here — and only here — they're still in Early Bird. When the places fill up, they close.
* Price ≠ Value. Value is what you take away. Price is what you pay for it. Here, today, you pay less for exactly the same thing.
04 — Pilot programmes
{/* DFO */}
Business · Leadership
Empowerment.
You were promoted for being the best at your job — but leading people is another craft. The method to lead teams, decide under pressure and communicate with authority. 100% online at your pace, with AI Tutor 24/7 and a dual university qualification.
«AI already changed HR. Have you?» Master ChatGPT, Copilot and Gemini, automate recruiting and comply with the AI Act + GDPR before it's mandatory. For talent leaders and HR directors in Portugal.
«DORA is already here. The AI Act is on its way. And you, CFO?» Master Copilot for Finance, put financial agents into production and respond to DORA + AI Act + PSD3. For CFOs, controllers and finance directors in Portugal.
Broker the rental of vessels and earn a commission on every charter booking you close. A real profession in a sector that moves millions every season — at your pace, with AI Tutor 24/7 and weekly live sessions with the industry.
);
}
/* ───────────── How it works ───────────── */
function How() {
const steps = [
{ n: "01", t: "Choose your programme", b: "Empowerment, AI·HR, AI·Fin or Yacht Charter Broker. Each with its own brand, tutoring and format." },
{ n: "02", t: "You sign up for the pilot", b: "Limited places. Early Bird while available. Instant secure payment." },
{ n: "03", t: "The cohort starts", b: "Live sessions, on-demand content and a community of students starting together." },
{ n: "04", t: "Campus access", b: "Your progress, materials and certification live on campus.northius.net." }
];
return (
How it works
From deciding to starting, in four steps.
{steps.map(s => (
{s.n}
{s.t}
{s.b}
))}
);
}
/* ───────────── Final CTA ───────────── */
function EndCta() {
return (