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

# Welcome

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={{
backgroundImage: 'linear-gradient(54deg, #009efd 22%, #00ff8a 100%)',
backgroundSize: 'cover',
backgroundPosition: 'center',
backgroundRepeat: 'no-repeat'
}}
  />

  <div style={{ position: 'absolute', textAlign: 'center', padding: '0 1rem' }}>
    <div
      className="text-gray-900 dark:text-gray-200"
      style={{
   fontWeight: '800',
   fontSize: '42px',
   margin: '0',
   marginBottom: '1.5rem'
  }}
    >
      Welcome to the Netevia ACH Developer Hub
    </div>

    <p
      className="prose white dark:invert"
      style={{
    margin: '0 auto',
    marginBottom: '2rem',
    fontWeight: '400',
    fontSize: '16px',
    maxWidth: '42rem',
    textAlign: 'center'
  }}
    >
      Find comprehensive guides and documentation to help you start working with Netevia as quickly as possible, as well as support if you get stuck.
    </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-background-light 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={{
    maxWidth: '28rem',
  }}
        onClick={openSearch}
      >
        <svg
          className="h-4 w-4 ml-1.5 flex-none bg-gray-500 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' }}
>
  <CardGroup cols={3}>
    <Card title="Business Guides" icon="book-open" iconType="solid" href="/docs/business/overview" horizontal={true} />

    <Card title="Technical Guides" icon="code-branch" iconType="solid" href="/docs/technical/overview" horizontal={true} />

    <Card title="API Endpoints" icon="code" iconType="solid" href="../api-reference/bank-account/validate-bank-account-and-routing-number" horizontal={true} />
  </CardGroup>
</div>
