forked from emre/www_projectmycelium_com
- Removed unused component imports across multiple pages (AgentHeroAlt, ComputeHero, CloudPage, GpuPage, StoragePage) - Changed ComputeDesign export from default to named export for consistency - Removed CloudDesign section from CloudPage layout
34 lines
1.2 KiB
TypeScript
34 lines
1.2 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">AGENT</Eyebrow>
|
|
<H3 as="h1" className="mt-2 text-gray-900">Sovereign AI Agents, Coming Soon.</H3>
|
|
<P className="mt-6 text-gray-600">
|
|
Hero is the autonomous agent layer for the Mycelium platform—trusted, policy-aware AI that runs on infrastructure you control and remembers what matters.
|
|
</P>
|
|
<div className="mt-8">
|
|
<Button href="#" variant="solid" color="cyan">
|
|
Join the Waitlist
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|