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

# Introduction

> Welcome to the world of Content Ignite!

export const Image = ({src, branded = false, alt = ""}) => {
  const imgParts = src.split(".");
  const brandClass = branded ? " branded" : "";
  return <>
      <img className={"block dark:hidden" + brandClass} src={"/assets/images/" + imgParts[0] + "--light." + imgParts[1]} alt={alt} />
      <img className={"hidden dark:block" + brandClass} src={"/assets/images/" + imgParts[0] + "--dark." + imgParts[1]} alt={alt} />
    </>;
};

<Image src="docs-banner.svg" alt="Welcome Graphic" branded />

## Getting help

We are here to help you throughout your experience, from initial sign-up through years of happy collaboration.

Our docs should provide everything you need to get started and to support you as you become a pro user of our platform. <span className="support-ref">But if you ever do get stuck, help is only ever one click away.</span>

<div className="support-ref">
  <Card title="Get Support" icon="life-ring" href="https://resource.contentignite.com/support" horizontal branded>
    Raise a support ticket and our friendly team will get back to you
  </Card>
</div>

## Get to know our products and concepts

Get familiar with our platforms concepts by reading up on them here, or by following the onboarding walkthrough once signed into our platform.

<Columns cols={2}>
  <Card title="SaaS vs P&P vs Fully Managed" icon="circle-nodes" href="/getting-started/saas-vs-pap">
    Different approaches, but the same platform and fundamental features &
    behaviours
  </Card>

  <Card title="Fusion &#x22;Pro&#x22; vs Fusion &#x22;Mapped&#x22;" icon="compass-drafting" href="/getting-started/pro-vs-mapped">
    If you choose to go the "SaaS" route, you have control over the ad unit
    structure inside your GAM
  </Card>

  <Card title="Our Ad Units" icon="screwdriver-wrench" href="/getting-started/ad-units">
    Get to know our ad units across web and app; everything from standard IAB,
    to our bespoke high-impact units
  </Card>

  <Card title="API documentation" icon="terminal" href="/api-reference">
    Built from the ground up to be developer friendly; from simple reporting
    access, to a full native integration into your UI
  </Card>
</Columns>

## Your questions answered

If you are new to Content Ignite, you probably have a lot of questions about how our tech works, what moving over to Content Ignite looks like, can it really be as simple as a single tag on page?? (Spoiler: yes!).

<Card title="Common questions & answers" icon="circle-question" href="/getting-started/faqs" horizontal>
  Jump on over to our Intro to Content Ignite Tech for common getting started
  FAQ's.
</Card>

## Onboarding, live and earning

Once signed up and signed in, you will see an onboarding banner on your dashboard. This will guide you through every step needed to get live and earning! Here is an overview of the top level steps required:

<Card title="Signing up" icon="1" horizontal href="/getting-started/signing-up">
  Create your account and verify your email address
</Card>

<Card title="Creating your first publisher" icon="2" horizontal href="/getting-started/first-publisher">
  Get your publisher verified and approved
</Card>

<Card title="Creating your first tag config" icon="3" horizontal href="/getting-started/first-tag-config">
  Configs provide everything needed to serve an ad
</Card>

<Card title="Going live" icon="4" horizontal href="/getting-started/going-live">
  Worth through your in platform onboarding steps to get live
</Card>
