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

# Home

export function openSearch() {
  document.getElementById('search-bar-entry').click();
}

export function openSearch() {
  document.getElementById('search-bar-entry').click();
}

<div className="relative w-full flex items-center justify-center" style={{ height: '24rem', overflow: 'hidden'}}>
  <div
    className="absolute inset-0"
    style={{
  background: 'linear-gradient(to left, #2c2677 30%, #150f45 100%)',
  opacity: 0.98
}}
  />

  <div style={{ position: 'absolute', textAlign: 'center', padding: '0 1rem' }}>
    <div
      className="text-white dark:text-gray-200"
      style={{
   fontWeight: '600',
   fontSize: '28px',
   margin: '0',
  }}
    >
      Attack Paths For All
    </div>

    <p
      className="prose text-white dark:prose-invert"
      style={{
    marginTop: '1rem',
   fontWeight: '400',
   fontSize: '16px',
   maxWidth: '42rem'
  }}
    >
      <span style={{color: '#5465ff'}}>(b:BloodHoundUsers) - \[h:Think\_In] -> (e:Graphs)</span>
    </p>

    <div className="flex items-center justify-center">
      <button
        type="button"
        className="hidden w-full lg:flex items-center text-sm leading-6 rounded-lg py-1.5 pl-2.5 pr-3 shadow-sm text-gray-400 dark:text-white/50 bg-white dark:bg-background-dark dark:brightness-[1.1] dark:ring-1 dark:hover:brightness-[1.25] ring-1 ring-gray-400/20 hover:ring-gray-600/25 dark:ring-gray-600/30 dark:hover:ring-gray-500/30 focus:outline-primary"
        id="home-search-entry"
        style={{
    marginTop: '2rem',
    maxWidth: '28rem',
  }}
        onClick={openSearch}
      >
        <svg
          className="h-4 w-4 ml-1.5 flex-none bg-primary-light hover:bg-gray-600 dark:bg-white/50 dark:hover:bg-white/70"
          style={{
    marginRight: '0.5rem',
     maskImage:
       'url("https://mintlify.b-cdn.net/v6.5.1/solid/magnifying-glass.svg")',
     maskRepeat: 'no-repeat',
     maskPosition: 'center center',
    }}
        />

        Search or ask
      </button>
    </div>
  </div>
</div>

<div
  style={{marginTop: '2rem', marginBottom: '8rem', maxWidth: '70rem', marginLeft: 'auto',
marginRight: 'auto', paddingLeft: '1.25rem',
paddingRight: '1.25rem' }}
>
  <div
    className="text-white dark:text-gray-200"
    style={{
   fontWeight: '600',
   fontSize: '28px',
   margin: '0',
   paddingBottom: '1.25rem' 
  }}
  >
    Get started
  </div>

  <CardGroup cols={4}>
    <Card title="Get Started" icon="house" href="/get-started/introduction" iconType="solid">
      Learn about BloodHound, how to get started, and its security boundaries.
    </Card>

    <Card title="Install a Data Collector" icon="folder" href="/install-data-collector/overview" iconType="solid">
      Deploy SharpHound Enterprise or AzureHound Enterprise to collect and upload data for processing and analysis.
    </Card>

    <Card title="Collect Data" icon="searchengin" href="/collect-data/overview" iconType="solid">
      Learn how attack path data collection and ingestion works, and how to run attack path data collections.
    </Card>

    <Card title="Analyze Attack Path Data" icon="chart-column" href="/analyze-data/overview" iconType="solid">
      Analyzing ingested BloodHound data, and identify and remediate attack paths and risks.
    </Card>

    <Card title="OpenGraph" icon="circle-nodes" href="/opengraph/overview" iconType="solid">
      Ingest any data source and map Attack Paths. Learn about the schema, custom icons and more.
    </Card>

    <Card title="Manage BloodHound" icon="user-shield" href="/manage-bloodhound/overview" iconType="solid">
      Manage a BloodHound instance and its related components, such as users, roles, authentication, collector status, and general security.
    </Card>

    <Card title=" API & Integrations" icon="code" href="/integrations/overview" iconType="solid">
      Build with BloodHound through its REST API and integrations.
    </Card>
  </CardGroup>
</div>
