import { Fragment } from 'react' import { ARCH_LAYERS } from '@/content/site' import { SectionLabel } from '@/components/section-label' import { Reveal } from '@/components/reveal' export function Architecture() { return (
ARCHITECTURE

五层架构,一条零拷贝总线

Monolith First,为微服务演进预留缝隙(Morph B)。

{ARCH_LAYERS.map((layer, i) => ( {/* NATS 总线插在 L2 和 L4 之间 */} {i === 2 && (
⇅ NATS JETSTREAM — 零拷贝消息骨干网 · sundynix.* ⇅
)}
{layer.id} {layer.name}{' '} {layer.detail} {layer.tech}
))}
) }