> ## 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.

# Superblocks on your platform

> See how Superblocks maps to the services in your cloud platform

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 runs on your cloud. Whether your organization is built on AWS, Databricks, or Snowflake, Superblocks plugs into your existing databases, AI providers, and file storage so your builders can create apps without leaving your ecosystem.

Each platform page below shows how Superblocks features map to specific services in that platform, so you can see exactly what gets used when your team builds and deploys apps.

<CardGrid
  cards={[
{
  title: "Superblocks on AWS",
  description: "Database on RDS, inference on Bedrock, file storage on S3",
  href: "/admin/cloud-providers/aws"
},
{
  title: "Superblocks on Databricks",
  description: "Database on LakeBase, inference on AI Gateway, file storage on Unity Catalog Volumes",
  href: "/admin/cloud-providers/databricks"
},
{
  title: "Superblocks on Snowflake",
  description: "Database on Snowflake, inference on Cortex, file storage on Snowflake Stage",
  href: "/admin/cloud-providers/snowflake"
}
]}
/>
