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

# Welcome to Unify

> This is the official Unify product guide.

export const Title = ({children}) => {
  return <div className="text-gray-900 dark:text-gray-200 text-2xl tracking-tight">
      {children}
    </div>;
};

export const Container = ({children}) => {
  return <div className="px-4 lg:px-10 py-14">
      {children}
    </div>;
};

<div className="mx-auto lg:mr-auto lg:ml-8 max-w-4xl px-6 divide-y dark:divide-white/15">
  <Container>
    <div className="w-full flex flex-col">
      <div className="flex flex-col items-start justify-center w-full max-w-4xl text-left">
        <div className="text-primary dark:text-primary-light text-4xl tracking-tight">
          Welcome to Unify
        </div>

        <p className="text-md prose dark:prose-invert text-left mt-3 mb-4">
          Unify is the all-in-one solution for sales, marketing, and
          go-to-market teams.
        </p>

        <div className="flex flex-row gap-4 mt-5">
          <a href="/getting-started/setup-guide">
            <button type="button" className="px-5 flex items-center font-medium text-sm rounded-full py-2 shadow-sm text-white dark:text-gray-900 bg-primary-dark dark:bg-primary-light hover:opacity-[0.9] hover:bg-primary justify-center">
              Get started <b className="size-3 ml-1">→</b>
            </button>
          </a>
        </div>
      </div>
    </div>
  </Container>

  <Container>
    <div className="flex flex-col w-full mb-7">
      <div className="flex items-center justify-between w-full">
        <Title>Explore the platform</Title>
      </div>

      <p className="prose dark:prose-invert text-md mb-1 mt-3">
        Become an expert and learn how to get the most out of Unify.
      </p>
    </div>

    <Columns cols={2}>
      <Card title="Reference Guide" icon="book" href="/reference/overview">
        Explore the features available in Unify.
      </Card>

      <Card title="Tutorials" icon="rocket-launch" href="/tutorials/how-to-create-a-play">
        Hands-on guides that cover the essential features and most popular
        strategies.
      </Card>

      <Card title="Unify University" icon="camera-movie" href="https://www.unifygtm.com/university">
        An extensive library of video courses covering features and best
        practices.
      </Card>

      <Card title="Knowledge Base" icon="circle-question" href="https://support.unifygtm.com/">
        Find answers to common questions and troubleshooting tips in our help
        center.
      </Card>
    </Columns>
  </Container>

  <Container>
    <div className="flex flex-col w-full mb-7">
      <div className="flex items-center justify-between w-full">
        <Title>Sign up</Title>
      </div>

      <p className="prose dark:prose-invert text-md mb-1 mt-3">
        Don't have an account yet? <a href="https://www.unifygtm.com/get-started">Sign up today</a> to start using Unify.
      </p>
    </div>
  </Container>
</div>
