> ## Documentation Index
> Fetch the complete documentation index at: https://docs.coralos.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Welcome to the CoralOS documentation

> The decentralized protocol powering AI agent collaboration, trust, and payments.

export const HeroCard = ({filename, title, description, href}) => {
  return <a className="group cursor-pointer pb-8" href={href}>
      <img src={`images/hero/${filename}-light.png`} className="rounded-xl block dark:hidden pointer-events-none group-hover:scale-105 transition-all duration-100" />
      <img src={`images/hero/${filename}-dark.png`} className="rounded-xl pointer-events-none group-hover:scale-105 transition-all duration-100 hidden dark:block" />
      <h3 className="mt-5 text-gray-900 dark:text-zinc-50 font-medium">
        {title}
      </h3>
      <span className="mt-1.5">{description}</span>
    </a>;
};

<div className="absolute top-0 left-0 right-0 max-h-screen opacity-20 overflow-hidden pointer-events-none select-none">
  <img src="https://mintcdn.com/23turtles/RpvWwkf3rBTyAtaX/images/hero/Cover_Ascii_White.png?fit=max&auto=format&n=RpvWwkf3rBTyAtaX&q=85&s=1ded61f23cbca38be11d0c86cad637d4" className="block dark:hidden pointer-events-none h-full" style={{maskImage: 'linear-gradient(black 0%, transparent 100%)'}} width="5200" height="3200" data-path="images/hero/Cover_Ascii_White.png" />

  <img src="https://mintcdn.com/23turtles/RpvWwkf3rBTyAtaX/images/hero/Cover_Ascii_Black.png?fit=max&auto=format&n=RpvWwkf3rBTyAtaX&q=85&s=a892f3c41c1d262d6b5d76e34c57302e" className="hidden dark:block pointer-events-none h-full" style={{maskImage: 'linear-gradient(black 0%, transparent 100%)'}} width="2600" height="1600" data-path="images/hero/Cover_Ascii_Black.png" />
</div>

<div className="px-4 py-16 lg:py-48 lg:pb-24 max-w-3xl mx-auto">
  <h1 className="block text-4xl font-medium text-center text-gray-900 dark:text-zinc-50 tracking-tight">
    CoralOS
  </h1>

  <div className="max-w-xl mx-auto px-4 mt-4 text-lg text-center text-gray-500 dark:text-zinc-500">
    Kubernetes for AI agents: a platform for everything between your agents and production - registry, runtimes, security, and orchestration.
  </div>

  <div className="mt-12 lg:mt-24">
    <div className="px-6 lg:px-0  grid sm:grid-cols-2 gap-x-6 gap-y-4">
      <HeroCard filename="fish-card" title="Quickstart" description="Get set up with Coral Server and your first agent interaction" href="/guides/quickstart" />

      <HeroCard filename="logo-card" title="Introduction" description="What is CoralOS?" href="/about" />
    </div>
  </div>
</div>
