diff --git a/src/components/BentoReviews.tsx b/src/components/BentoReviews.tsx new file mode 100644 index 0000000..7451646 --- /dev/null +++ b/src/components/BentoReviews.tsx @@ -0,0 +1,60 @@ +'use client' + +import React from 'react' +import { CT, CP } from '@/components/Texts' + +interface Review { + title: string + body: string +} + +const reviews: Review[] = [ + { title: 'FungiStor: Long-Term AI Memory', body: 'Quantum-safe permanent storage preserving AI knowledge forever. Zero-knowledge architecture with mathematical dispersal ensures immortality.' }, + { title: 'HeroDB: Active AI Memory', body: 'High-performance datastore for AI working memory. Multi-modal indexing enables vector search with global accessibility.' }, + { title: 'MOS Sandboxes: Secure Agent Workspaces', body: 'Lightweight isolated environments deploying globally in five seconds. Hardware-level isolation ensures maximum security for agents.' }, + { title: 'Mycelium Mesh: Secure Communication Network', body: 'Peer-to-peer overlay network with end-to-end encryption. Self-healing shortest-path routing creates resilient agentic communication.' }, + { title: 'Deterministic Deployment: Verifiable Code Execution', body: 'Cryptographic guarantee system ensuring deployed code matches specifications. Prevents supply-chain attacks with immutable trails.' }, + { title: 'Agent Coordination: Sovereign Workflow Management', body: 'User-centric orchestration where HERO agents coordinate worker fleets. Planetary-scale coordination with instant spawning.' }, + { title: 'Universal Interface Layer: AI Service Gateway', body: 'Unified broker connecting agents to LLMs, APIs, and services. Integrated micropayments simplify development.' }, + { title: 'Semantic Index & Search: Navigable Knowledge Fabric', body: 'Transforms data chaos into unified knowledge graphs. Goes beyond keywords to understand meaning and context.' }, +] + +export function BentoReviews() { + return ( +
+
+ AI Memory & Coordination +

+ The Mycelium Agentic Stack +

+ + {/* Bento Grid */} +
+ {/* Left + middle cards */} + {reviews.slice(0, 6).map((review, i) => ( +
+ {review.title} + {review.body} +
+ ))} + + {/* Right column (two stacked cards) */} +
+ {reviews.slice(6).map((review, i) => ( +
+ {review.title} + {review.body} +
+ ))} +
+
+
+
+ ) +}