import type { Metadata } from "next"; import { PageHero } from "@/components/marketing/page-hero"; import { PlaceholderNotice } from "@/components/marketing/placeholder-notice"; export const metadata: Metadata = { title: "Roadmap", description: "krypco delivery phases — honest placeholders, no fake ship dates.", }; const PHASES = [ { phase: "Phase 0–1", title: "Portal skeleton & brand site", status: "In progress", body: "Monorepo, design system, marketing site, portal shell.", }, { phase: "Phase 2", title: "Live explorer data", status: "Next", body: "Indexer-fed transactions and blocks; hybrid path visualization.", }, { phase: "Phase 3+", title: "Auth, services, chain depth", status: "Later", body: "Briven Auth, richer services catalog, production chain integration.", }, ] as const; export default function RoadmapPage() { return ( <>
No invented launch dates. Status labels are directional only.
    {PHASES.map((p) => (
  1. {p.phase}

    {p.status}

    {p.title}

    {p.body}

  2. ))}
); }