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

# Introduction

> A high-performance graph-vector database with its own query language

> For the complete documentation index optimized for AI agents, see [llms.txt](/llms.txt).

export const HeroCard = ({icon, title, description, href}) => {
  return <a className="group flex flex-col h-full rounded-xl overflow-hidden hover:shadow-xl transition-all duration-300 border border-gray-100 dark:border-zinc-800 hover:border-[#F26419]/30 dark:hover:border-[#F26419]/30 bg-white dark:bg-zinc-900/50" href={href}>
      <div className="p-6">
        <div className="w-12 h-12 rounded-lg bg-[#F26419]/10 flex items-center justify-center mb-4 group-hover:bg-[#F26419]/20 transition-colors">
          <span className="text-2xl">{icon}</span>
        </div>
        <h3 className="text-xl font-semibold text-gray-900 dark:text-zinc-50">{title}</h3>
        <p className="mt-3 text-gray-600 dark:text-zinc-400">{description}</p>
      </div>
    </a>;
};

<div className="relative pb-12">
  <div className="px-4 py-16 lg:py-32 max-w-4xl mx-auto">
    <h1 className="text-5xl font-bold text-center text-gray-900 dark:text-zinc-50 tracking-tight">
      Build with <span className="text-primary font-medium">HelixDB</span>
    </h1>

    <p className="max-w-2xl mx-auto px-4 mt-6 text-xl text-center text-gray-600 dark:text-zinc-400 leading-relaxed">
      A high-performance graph-vector database — <span className="font-medium">fast</span>, <span className="font-medium">flexible</span>, and <span className="font-medium">built for AI</span>.
    </p>

    <div className="mt-16 lg:mt-20 grid sm:grid-cols-2 gap-6">
      <HeroCard icon="⚡" title="Getting Started" description="Install the CLI v2, scaffold a project, and send your first dynamic query" href="/cli/getting-started" />

      <HeroCard icon="☁️" title="Helix Cloud" description="Authenticate, link a project, and query a Helix Cloud cluster" href="/cli/workflows/helix_cloud" />

      <HeroCard icon="🏛️" title="HelixDB Enterprise" description="Architecture, multi-tenancy, security, and operational guarantees" href="/database/introduction" />

      <HeroCard icon="📚" title="CLI Command Reference" description="Every helix CLI command, subcommand, and flag" href="/cli/command-reference" />
    </div>
  </div>
</div>
