forked from emre/www_projectmycelium_com
- Created AgentComponents table showcasing building blocks of sovereign agents - Added CallToAction section with deployment and documentation links - Updated hero and deployment sections to clarify agent layer timeline and current capabilities
41 lines
1.7 KiB
TypeScript
41 lines
1.7 KiB
TypeScript
'use client'
|
|
|
|
import { Button } from '../../components/Button'
|
|
import { Eyebrow, P, H3 } from '../../components/Texts'
|
|
|
|
export function AgentHeroAlt() {
|
|
return (
|
|
<div className="relative bg-white lg:mt-10 mt-0">
|
|
<div className="relative h-80 overflow-hidden bg-transparent md:absolute md:right-0 md:h-full md:w-1/3 lg:w-2/3">
|
|
<img
|
|
alt=""
|
|
src="/images/agents.png"
|
|
className="size-full object-cover"
|
|
/>
|
|
|
|
</div>
|
|
<div className="relative mx-auto max-w-7xl py-24 sm:py-32 lg:px-8">
|
|
<div className="pr-6 pl-6 md:mr-auto md:w-2/3 md:pr-16 lg:w-1/2 lg:pl-0 lg:pr-24 xl:pr-32">
|
|
<Eyebrow className="text-base/7 font-semibold text-cyan-500">MYCELIUM AGENTS</Eyebrow>
|
|
<H3 as="h1" className="mt-2 text-gray-900">Sovereign AI Agents, Coming Soon.</H3>
|
|
<P className="mt-6 text-gray-600">
|
|
The Agent layer will allow you to run autonomous, policy-governed AI that operates on infrastructure you control, with private memory, verifiable execution, and coordination across your personal or organizational environment.
|
|
</P>
|
|
<P className="mt-6 text-gray-600">
|
|
Works Alone. Works Together.
|
|
Use Agents on top of any Mycelium Cloud deployment or pair them with the Mycelium Network for private, encrypted collaboration across users and systems.
|
|
</P>
|
|
<div className="mt-8">
|
|
<Button href="#" variant="solid" color="cyan">
|
|
Follow Deployment
|
|
</Button>
|
|
<Button href="#" variant="outline" color="white">
|
|
Explore Docs
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|