"use client"; import { useState } from "react"; import { Container } from "@/components/Container"; import { Eyebrow, P, H3, H5, CP } from "@/components/Texts"; const architecture = [ { title: "Encrypted Storage Substrate", description: "Keeps data private and verifiable.", }, { title: "Mesh Routing Layer", description: "Connects clients and workloads securely, anywhere.", }, { title: "Protocol Gateway Layer", description: "Serve the same dataset over S3, IPFS, WebDAV, or HTTP.", }, ]; export function StorageArchitecture() { const [active, setActive] = useState(0); return (
{/* ✅ Top horizontal line with spacing */}
{/* ✅ Boxed container */}
ARCHITECTURE

How it Works

A layered design that encrypts, routes, and exposes storage through multiple protocols — without duplicating data or compromising sovereignty.

{/* ✅ New 2-column layout */}
{/* LEFT — 1 column (3 rows) */}
{architecture.map((item, index) => ( ))}
{/* RIGHT — 2 columns */}
{architecture[active].title}

{architecture[active].description}

); }