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

# Create a Surface

> Learn how to create a surface to organize experiments.

export const HowToSchema = ({name, description, steps = []}) => {
  const schema = {
    "@context": "https://schema.org",
    "@type": "HowTo",
    name,
    description
  };
  if (steps.length > 0) {
    schema.step = steps.map((s, i) => ({
      "@type": "HowToStep",
      position: i + 1,
      name: typeof s === "string" ? s : s.name,
      text: typeof s === "string" ? s : s.text || s.name
    }));
  }
  return <script type="application/ld+json" dangerouslySetInnerHTML={{
    __html: JSON.stringify(schema)
  }} />;
};

<HowToSchema
  name="Create a Surface"
  description="Learn how to create a surface to organize experiments."
  steps={[
{
  name: "Go to Surfaces",
  text: "Go to Confidence and select Surfaces on the left sidebar.",
},
{ name: "Click Create", text: "Click + Create to create a new surface." },
{
  name: "Configure the surface",
  text: "Give the surface a name, a description, and an owner. Click Create.",
},
]}
/>

A [surface](../surfaces/introduction) is a logical representation of some part of your app or website, under which you can organize experiments.

## Create a Surface

<Steps>
  <Step title="Go to Surfaces">
    Go to Confidence and select **Surfaces** on the left sidebar.
  </Step>

  <Step title="Click Create">
    Click **+ Create** to create a new surface.
  </Step>

  <Step title="Configure the surface">
    Give the surface a name, a description, and an owner. Click **Create**.
  </Step>
</Steps>

## Related Resources

<CardGroup cols={2}>
  <Card title="Surfaces Reference" href="/docs/surfaces/introduction">
    Deep dive into surface configuration
  </Card>

  <Card title="Add Experiment to Surface" href="/docs/how-to-guides/add-experiment-to-surface">
    Organize experiments on surfaces
  </Card>

  <Card title="Run Exclusive Experiments" href="/docs/how-to-guides/run-exclusive-experiments">
    Set up exclusivity groups on surfaces
  </Card>

  <Card title="Surface Settings" href="/docs/surfaces/surface-settings">
    Configure surface notifications and reviews
  </Card>
</CardGroup>
