/* GEЯE — About, Mission, What we're building, Roadmap, Principles */ function About() { return (

A Web3 ecosystem built by people who ship.

We're a technology ecosystem focused on turning ideas into real, scalable solutions. Where much of Web3 chases attention, we focus on the unglamorous work: durable infrastructure, tools that builders actually use, and a community that compounds over time.

Everything we make is judged by one question — does it help someone build? If the answer is no, we don't ship it.

Long-term
Build horizon
Utility-first
Design principle
Open
Ecosystem stance
); } function Mission() { return (

To give builders the foundation they need to ship — turning bold ideas into real, scalable Web3 solutions that last beyond the cycle.

); } function WhatWeBuild() { const items = [ ["layers", "Infrastructure", "Reliable, scalable foundations engineered to hold up as usage and the ecosystem grow.", "Foundation"], ["terminal", "Developer tooling", "Builder-grade SDKs, APIs and tooling that get teams from idea to shipped faster.", "Tooling"], ["users", "Community", "A network of builders, partners and contributors growing the ecosystem together.", "People"], ["boxes", "Applications", "Real products on top of our stack that demonstrate utility, not speculation.", "Products"], ["shield-check", "Security", "Audited, defensive engineering — because infrastructure has to be trustworthy.", "Trust"], ["git-branch", "Open standards", "Interoperable, documented and open by default so the ecosystem can build on us.", "Open"], ]; return (

The pieces of a real ecosystem.

Not a single product — a connected set of tools, infrastructure and community designed to compound.

{items.map(([ic, t, d, tag], i) => (

{t}

{d}

{tag}
))}
); } function Roadmap() { const phases = [ ["Phase 01", "Foundation", "shipped", ["Core infrastructure", "Brand & ecosystem identity", "Builder community launch"]], ["Phase 02", "Tooling", "active", ["Developer SDKs & APIs", "Documentation portal", "Partner onboarding"]], ["Phase 03", "Ecosystem", "planned", ["First-party applications", "Open standards release", "Grants for builders"]], ["Phase 04", "Scale", "planned", ["Cross-chain interoperability", "Governance & contribution", "Global builder network"]], ]; return (

Progress measured in shipped work.

A path defined by execution, not promises. Each phase builds on the last.

{phases.map(([num, title, status, items], i) => ( {num}

{title}

{status}
    {items.map((it) =>
  • {it}
  • )}
))}
); } function Principles() { const principles = [ ["01", "Utility over speculation", "We build things people use. If it doesn't create real utility, it doesn't belong in the ecosystem."], ["02", "Ship, don't promise", "We'd rather show working software than talk about a future that never arrives."], ["03", "Build for the long term", "We optimize for durability and compounding value, not short-term attention."], ["04", "Open and community-first", "Open standards, transparent work, and a community that grows alongside us."], ]; return (

How we decide what to build.

{principles.map(([n, t, d], i) => ( {n}

{t}

{d}

))}
); } Object.assign(window, { About, Mission, WhatWeBuild, Roadmap, Principles });