+
- Mycelium Technologies
+ Mycelium Technologies
A robust infrastructure layer for autonomous AI agents, our technology stack
@@ -47,9 +84,9 @@ export function BentoReviews() {
))}
@@ -57,51 +94,4 @@ export function BentoReviews() {
);
}
-const Skeleton = () => (
-
-);
-const items = [
- {
- title: 'FungiStor: Long-Term AI Memory',
- description: 'Quantum-safe permanent storage preserving AI knowledge forever. Zero-knowledge architecture with mathematical dispersal ensures immortality.',
- header:
,
- icon:
,
- },
- {
- title: 'HeroDB: Active AI Memory',
- description: 'High-performance datastore for AI working memory. Multi-modal indexing enables vector search with global accessibility.',
- header:
,
- icon:
,
- },
- {
- title: 'MOS Sandboxes: Secure Agent Workspaces',
- description: 'Lightweight isolated environments deploying globally in five seconds. Hardware-level isolation ensures maximum security for agents.',
- header:
,
- icon:
,
- },
- {
- title: 'Mycelium Mesh: Secure Communication Network',
- description: 'Peer-to-peer overlay network with end-to-end encryption. Self-healing shortest-path routing creates resilient agentic communication.',
- header:
,
- icon:
,
- },
- {
- title: 'Deterministic Deployment: Verifiable Code Execution',
- description: 'Cryptographic guarantee system ensuring deployed code matches specifications. Prevents supply-chain attacks with immutable trails.',
- header:
,
- icon:
,
- },
- {
- title: 'Agent Coordination: Sovereign Workflow Management',
- description: 'User-centric orchestration where HERO agents coordinate worker fleets. Planetary-scale coordination with instant spawning.',
- header:
,
- icon:
,
- },
- {
- title: 'Universal Interface Layer: AI Service Gateway',
- description: 'Unified broker connecting agents to LLMs, APIs, and services. Integrated micropayments simplify development.',
- header:
,
- icon:
,
- },
-];
diff --git a/src/components/ui/bento-grid.tsx b/src/components/ui/bento-grid.tsx
index 357e63e..a72cd4e 100644
--- a/src/components/ui/bento-grid.tsx
+++ b/src/components/ui/bento-grid.tsx
@@ -1,5 +1,6 @@
import { cn } from "@/lib/utils";
-import { H1, H2, H3, H4, P, CT, CP } from "@/components/Texts";
+import { H1, H2, H3, H4, P, CT, CP, NL } from "@/components/Texts";
+import Image from 'next/image';
export const BentoGrid = ({
className,
@@ -23,28 +24,43 @@ export const BentoGrid = ({
export const BentoGridItem = ({
className,
title,
+ subtitle,
description,
- header,
- icon,
+ img,
+ video,
}: {
className?: string;
title?: string | React.ReactNode;
+ subtitle?: string | React.ReactNode;
description?: string | React.ReactNode;
- header?: React.ReactNode;
- icon?: React.ReactNode;
+ img?: string;
+ video?: string;
}) => {
return (
- {header}
-
- {icon}
+
+ {video ? (
+
+ ) : img ? (
+
+ ) : null}
+
+
{title}
- {description}
+ {subtitle}
+ {description}
);