/* Page sections: Nav, Hero, ToolSection, Showcase, AboutSection, FinalCTA, Footer Copy reused verbatim from milkyway.international (meta) and the Miroverse template authored by the Milky Way creators. */ const Logo = ({ size = 26 }) => ( MilkyWay ); const ArrowRight = () => ( ); function Nav() { return (
); } function Hero({ layout = "split" }) { return (
MILKY WAY INTERNATIONAL

Power your business with a shared map of your enterprise.

Map your enterprise, create a common understanding, navigate different aspects and accelerate change. Create one true anchor map for different perspectives in your operations, tactics and strategic prioritizations.

Sign up About us →
milkyway.international  /  enterprise-map
); } /* The Tool — copy lifted from the Miroverse description authored by the Milky Way creators (same source, same wording). */ function ToolSection() { return (
THE MILKY WAY TOOL

The Milky Way is an enterprise map.

A map showing what you do in which order, what applications you use while doing this, what information needs to be communicated between different parts of the enterprise as well as how you interact with your customers and partners.

What you do, in which order

Lay out the value flow of your enterprise — capability by capability, step by step.

The applications you use

Surface the IT systems supporting each capability — own and partner — exactly where they live in the work.

Information that flows between

Make the hand-offs visible: what gets communicated between different parts of the enterprise.

How you meet customers & partners

The customer journey winds through the map — every touchpoint, every interaction, in context.

); } function Showcase() { return (
A Milky Way enterprise map
A REAL MILKY WAY MAP
HOW IT LOOKS

One true anchor map for every perspective.

Regardless if you are a co-worker, management team member or consultant helping an organization, the Milky Way helps you map out, navigate and analyze an enterprise — from small businesses with just 20 people to large complex organizations or global companies.

  • Operations — what you do today, made visible.
  • Tactics — different aspects of change, navigated in context.
  • Strategy — one anchor for prioritising what's next.
); } /* The Book — "The Milky Way: Map, navigate and accelerate change" by Cecilia Nordén. Copy from the public product description; outgoing links to Amazon, Goodreads, Google Books. */ const ExternalIcon = () => ( ); function BookSection() { return (
THE MILKY WAY BOOK

Map, navigate and accelerate change.

"The Milky Way is a true anchor model and navigational tool for your enterprise — a rapid, visual method for better decision making." A book by Cecilia Nordén, co-founder of Milky Way International.

The Milky Way — Map, navigate and accelerate change, by Cecilia Nordén
2021 · English & Swedish · Kindle & print

If you are struggling with questions like:

  • How can business and IT use a common map and language to communicate?
  • How do we effectively combine different types of information and analyses?
  • How can we accelerate change?
  • How can we make the right decision to achieve the desired result?

Then The Milky Way is what you need. The book gives you a solid foundation on which to build a better understanding of how all parts of your enterprise collaborate to embrace innovation, generate customer value, run more efficient value streams, and identify what needs to be improved throughout your organisation — and why.

Buy on Amazon Goodreads Google Books
); } /* About — drawn from the Miroverse creator bios for Milky Way International */ function AboutSection() { return (
ABOUT

Why we started Milky Way International.

The business world is changing in an ever faster way. The modern organizational world — with new innovations, short product cycles, new competitors, new partnerships, new value propositions, digitalization demands — is a navigational challenge. More text-based information in silos is not working.

We need a fast and comprehensive way to organize different stakeholder perspectives, to create a shared understanding about where we are today, what we are doing, and how we navigate together. Happy mapping, navigating and analyzing.

CN

Cecilia Nordén

Co-founder · Co-creator of the Milky Way

Cecilia co-created the Milky Way mapping canvas and has spent the last two decades helping organizations — from small businesses to global enterprises — establish a shared understanding of what they do and where they are going.

TL

Thomas Larsson

Co-founder · Information Architect

Thomas co-created the Milky Way and works at the intersection of business architecture, IT and change. He helps leadership teams turn scattered context into one navigable map of the enterprise.

); } function FinalCTA() { const [firstName, setFirstName] = React.useState(""); const [lastName, setLastName] = React.useState(""); const [email, setEmail] = React.useState(""); const [company, setCompany] = React.useState(""); const [submitted, setSubmitted] = React.useState(false); const [firstNameError, setFirstNameError] = React.useState(""); const [emailError, setEmailError] = React.useState(""); const [submitError, setSubmitError] = React.useState(""); const [submitting, setSubmitting] = React.useState(false); function validate() { let ok = true; if (!firstName.trim()) { setFirstNameError("First name is required"); ok = false; } else setFirstNameError(""); if (!email.trim()) { setEmailError("Email is required"); ok = false; } else if (!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)) { setEmailError("Please enter a valid email"); ok = false; } else setEmailError(""); return ok; } async function onSubmit(e) { e.preventDefault(); if (!validate()) return; setSubmitting(true); setSubmitError(""); try { const resp = await fetch("/api/signup", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ first_name: firstName.trim(), last_name: lastName.trim(), email: email.trim(), company: company.trim(), }), }); if (!resp.ok) { setSubmitError("Something went wrong. Please try again."); return; } setSubmitted(true); } catch (_err) { setSubmitError("Network error. Please try again."); } finally { setSubmitting(false); } } return (
SIGN UP

Map your enterprise. Accelerate change.

Create your first Milky Way map and bring your team into a shared understanding.

{submitted ? (

You're in.

Thanks {firstName}. We'll send the next steps to {email}.

) : (
{ setFirstName(e.target.value); if (firstNameError) setFirstNameError(""); }} placeholder="First name" aria-invalid={!!firstNameError} className={firstNameError ? "has-error" : ""} /> {firstNameError &&
{firstNameError}
}
setLastName(e.target.value)} placeholder="Last name" />
{ setEmail(e.target.value); if (emailError) setEmailError(""); }} onBlur={validate} placeholder="you@company.com" aria-invalid={!!emailError} className={emailError ? "has-error" : ""} /> {emailError &&
{emailError}
}
setCompany(e.target.value)} placeholder="Your organization" />
{submitError &&
{submitError}
}
)}
); } function Footer() { return ( ); } Object.assign(window, { Nav, Hero, ToolSection, Showcase, BookSection, AboutSection, FinalCTA, Footer });