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

# Bring Your Own Stack

> Connect Superblocks to your existing infrastructure — your models, your cloud, your data, your file storage

export const CardGrid = ({cards}) => {
  if (!cards || !Array.isArray(cards)) {
    return null;
  }
  return <div className="card-grid">
      {cards.map((card, index) => {
    const hasDescription = card.description;
    const hasImage = card.image;
    const isImageOnly = hasImage && !hasDescription;
    return <a key={index} href={card.href} className={`card-grid-item ${isImageOnly ? 'card-grid-item-centered' : ''}`}>
            {card.image && <img src={card.image} alt={card.title} className="card-grid-image" />}
            <h3 className="card-grid-title">{card.title}</h3>
            {card.description && <p className="card-grid-description">{card.description}</p>}
          </a>;
  })}
    </div>;
};

Superblocks is infrastructure-agnostic. Rather than locking you into a specific cloud, database, or AI provider, Superblocks orchestrates and enforces governance on the stack you already have. Your builders get a seamless experience, your data never leaves your environment, and you leverage your preferred, IT-approved vendors.

As an administrator, you configure the defaults once — your database backend, your inference provider, your file storage — and every app your team builds automatically inherits those choices.

## Configure your stack

<CardGrid
  cards={[
{
  title: "Superblocks Database",
  description: "Provision a managed database per app on your infrastructure — Snowflake, AWS RDS, or Databricks LakeBase",
  href: "/admin/bring-your-own-stack/database"
},
{
  title: "Bring Your Own Inference",
  description: "Point Clark AI at your preferred provider so every prompt runs on your infrastructure",
  href: "/admin/bring-your-own-stack/inference"
},
{
  title: "App AI",
  description: "Set the default AI provider for all AI-powered features your builders use inside their apps",
  href: "/admin/bring-your-own-stack/default-ai"
},
{
  title: "Superblocks File Store",
  description: "Provision managed file storage per app on your infrastructure — S3, GCS, Azure Blob, or more",
  href: "/admin/bring-your-own-stack/file-store"
}
]}
/>
