import { Container } from '../../components/Container' import { Eyebrow, SectionHeader } from '../../components/Texts' const architecture = [ { title: 'Sovereign Compute Nodes', description: 'GPUs hosted on hardware you trust.', }, { title: 'Encrypted Mesh Networking', description: 'Secure, private connectivity to workloads.', }, { title: 'Reservation & Verification Layer', description: 'Guarantees GPU access and consistency.', }, ] export function GpuArchitecture() { return (
ARCHITECTURE HOW IT WORKS
{architecture.map((item) => (

{item.title}

{item.description}

))}
) }