'use client' import { useId, useState } from 'react' import { Button } from '@/components/Button' import { Container } from '@/components/Container' import ContactForm from '../../../components/ContactForm' function BackgroundIllustration(props: React.ComponentPropsWithoutRef<'div'>) { const id = useId() return (
) } export function AgentsHero() { const [isContactOpen, setIsContactOpen] = useState(false) return ( <>

Mycelium Agents

Sovereign AI agents, coming soon.

Hero is the autonomous agent layer for the Mycelium platform—trusted, policy-aware AI that runs on infrastructure you control and remembers what matters.

Preview of Hero sovereign agent orchestration
setIsContactOpen(false)} title="Join the Waitlist" formType="agent_waitlist" /> ) }