import React from 'react'; import { ContentTemplate } from '@/components/templates'; import { SectionHead, Card } from '@/components/atoms'; import { DataTable, CardGrid, Flow } from '@/components/molecules'; import { Reveal } from '@/components/organisms'; import { COMPARISON, TIER_STRUCTURES, ONLINE_FLOW } from '@/data/structures'; export default function Structures() { return ( {TIER_STRUCTURES.map((ts) => ( = 3 ? 3 : 2}> {ts.cards.map((c, i) => (

{c.p}

))}
))}
); }