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

# Introduction

> Veri is a platform for post-training, deploying, and evaluating language models.

export const HeroCard = ({filename, title, description, href}) => {
  return <a className="block w-full min-w-0 group cursor-pointer pb-8" href={href}>
      <img src={`/images/hero/${filename}.svg`} className="block w-full dark:hidden pointer-events-none group-hover:scale-[1.03] transition-all duration-100" />
      <img src={`/images/hero/${filename}-dark.svg`} className="w-full pointer-events-none group-hover:scale-[1.03] 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="veri-docs-home relative">
  <div className="relative z-10 px-4 py-12 lg:py-16 lg:pb-20 max-w-3xl mx-auto">
    <h1 className="block text-4xl font-medium text-center text-gray-900 dark:text-zinc-50 tracking-tight">
      Veri Documentation
    </h1>

    <div className="max-w-xl mx-auto px-4 mt-4 text-lg text-center text-gray-500 dark:text-zinc-500">
      Post-train and deploy any model easily. Veri gives you a complete pipeline for training, serving, and evaluating language models.
    </div>

    <div className="px-6 lg:px-0 mt-12 lg:mt-24 grid sm:grid-cols-2 gap-x-10 gap-y-8">
      <HeroCard filename="rocket" title="Quickstart" description="Install, log in, and make your first API call in 3 minutes" href="/quickstart" />

      <HeroCard filename="cli" title="Train a model" description="See how to use our training stack." href="/training" />

      <HeroCard filename="editor" title="Deploy a model" description="Serve any base or trained model with an OpenAI-compatible API" href="/deployments" />

      <HeroCard filename="components" title="Evaluate a model" description="Score deployed models on benchmarks and your own datasets" href="/evaluations" />
    </div>
  </div>
</div>
