coming-soon.tsx13 lines · main
1import { DocsShell } from './shell';
2
3export function ComingSoon({ title, phase }: { title: string; phase: string }) {
4 return (
5 <DocsShell>
6 <h1 className="font-mono text-2xl tracking-tight">{title}</h1>
7 <p className="mt-4 font-mono text-sm text-[var(--color-text-muted)]">
8 Writing this page lands in {phase}. The underlying code may already work — check the source
9 on GitHub or ask in the community channel while the docs catch up.
10 </p>
11 </DocsShell>
12 );
13}