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

# Home

> Welcome to Contextual AI Docs

<div
  style={{
maxWidth: "1400px",
margin: "0 auto",
}}
>
  <style jsx>
    {`
        @media (max-width: 640px) {
          .card-desc {
            display: none;
          }
        }
        `}
  </style>

  <h1
    style={{
textAlign: "center",
fontSize: "2.75rem",
fontWeight: "700",
marginTop: "2rem",
marginBottom: "0.5rem",
color: "black",
textAlign: "center"
}}
  >
    Welcome to Contextual AI Docs
  </h1>

  <h2
    style={{
textAlign: "center",
fontWeight: "normal",
color: "black",
marginBottom: "2rem",
}}
  />

  <hr
    style={{
border: "none",
borderTop: "1px solid #ddd",
margin: "2rem auto",
width: "90%",
}}
  />

  <div
    style={{
display: "grid",
gridTemplateColumns: "repeat(3, 1fr)",
gap: "1.5rem",
padding: "2rem 2rem",
color: "black",
marginBottom: "0",
}}
  >
    {[
          {
            title: "Getting Started",
            href: "/quickstarts/getting-started",
            desc: "Learn the basics of setting up and navigating the Contextual AI platform.",
            img: "/images/icon-home-gettingstarted-2.png",
          },
          {
            title: "How-to Guides",
            href: "/quickstarts/getting-started",
            desc: "Step-by-step guides and instructions for completing key tasks.",
            img: "/images/icon-home-howtoguides-2.png",
          },
          {
            title: "Reference",
            href: "/reference/",
            desc: "In-depth documentation of APIs, commands, and components.",
            img: "/images/icon-home-reference-2.png",
          },
          {
            title: "Admin & Setup",
            href: "/admin-setup/overview",
            desc: "Configuration, permissions, and environment setup guides.",
            img: "/images/icon-home-adminsetup-2.png",
          },
          {
            title: "Releases",
            href: "/release-notes/2026",
            desc: "See what's new in each version and track product changes.",
            img: "/images/icon-home-releases-2.png",
          },
          {
            title: "Integration",
            href: "/integration/",
            desc: "Explore extensions and third-party resources for extending your AI workflows.",
            img: "/images/icon-home-integration-2.png",
          },
        ].map(({ title, href, desc, img }) => (
          <a
            key={title}
            href={href}
            style={{
              textDecoration: "none",
              color: "black",
              border: "1px solid #ddd",
              borderRadius: "8px",
              padding: "16px",
              textAlign: "center",
              display: "flex",
              flexDirection: "column",
              justifyContent: "space-between",
              transition: "all 0.25s ease-in-out",
              backgroundColor: "white",
              height: "100%",
            }}
            onMouseEnter={(e) => {
              e.currentTarget.style.boxShadow = "0 4px 12px rgba(0, 0, 0, 0.1)";
              e.currentTarget.style.transform = "translateY(-4px)";
            }}
            onMouseLeave={(e) => {
              e.currentTarget.style.boxShadow = "none";
              e.currentTarget.style.transform = "translateY(0)";
            }}
          >
            <div style={{
              display: "flex",
              justifyContent: "center",
              alignItems: "center",
              marginBottom: "1rem",
            }}>
              <img
                src={img}
                alt={`${title} icon`}
                style={{ width: "64px", height: "64px" }}
              />
            </div>
            <div style={{ flex: "1" }}>
              <h2 style={{
                marginTop: 0,
                marginBottom: "0.5rem",
                fontWeight: "bold",
                fontSize: "1.25rem",
                color: "black",
              }}>
                {title}
              </h2>
              <p className="card-desc" style={{ color: "black", margin: 0 }}>{desc}</p>
            </div>
          </a>
        ))}
  </div>

  <p
    style={{
textAlign: "center",
fontSize: "0.875rem",
color: "black",
margin: "1rem 0 2rem",
}}
  >
    © 2026 Contextual AI.
  </p>
</div>
