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

# Woo Home Page

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

<div className="relative w-full flex items-center justify-center" style={{ height: '24rem', backgroundColor: '#1F1F33', overflow: 'hidden' }}>
  <div style={{ flex: 'none' }}>
    <img src="https://mintcdn.com/woox/K2XdG05Z-vdskkFd/images/home_banner.png?fit=max&auto=format&n=K2XdG05Z-vdskkFd&q=85&s=d066ddd8237a7877fa4b270e0a8a2fb0" style={{ height: '400px', width: '2000px', pointerEvents: 'none'  }} width="12000" height="2400" data-path="images/home_banner.png" />
  </div>

  <div style={{ position: 'absolute', textAlign: 'center' }}>
    <div
      style={{
    color: 'white',
    fontWeight: '400',
    fontSize: '48px',
    margin: '0',
  }}
    >
      WOO X Documentation
    </div>

    <p
      style={{
    color: 'white',
    fontWeight: '400',
    fontSize: '20px',
    opacity: '0.7',
  }}
    >
      Integrate. Automate. Trade.
    </p>

    <button
      type="button"
      className="mx-auto w-full flex items-center text-sm leading-6 shadow-sm text-gray-400 bg-white ring-1 ring-gray-400/20 focus:outline-primary"
      id="home-search-entry"
      style={{
    maxWidth: '24rem',
    borderRadius: '4px',
    marginTop: '3rem',
    paddingLeft: '0.75rem',
    paddingRight: '0.75rem',
    paddingTop: '0.75rem',
    paddingBottom: '0.75rem',
  }}
      onClick={openSearch}
    >
      <svg
        className="h-4 w-4 ml-1.5 mr-3 flex-none bg-gray-500 hover:bg-gray-600 dark:bg-white/50 dark:hover:bg-white/70"
        style={{
      maskImage:
        'url("images/home_banner.jpg")',
      maskRepeat: 'no-repeat',
      maskPosition: 'center center',
    }}
      />

      Start a chat with us...
    </button>
  </div>
</div>

<div
  style={{marginTop: '6rem', marginBottom: '8rem', maxWidth: '70rem', marginLeft: 'auto',
marginRight: 'auto', paddingLeft: '1.25rem',
paddingRight: '1.25rem' }}
>
  <div
    style={{
textAlign: 'center',
fontSize: '24px',
fontWeight: '600',
color: '#121142',
marginBottom: '3rem',
}}
  >
    <span className="text-primary">Choose a topic below</span>
  </div>

  <CardGroup cols={3}>
    <Card title="Reference" icon="code-simple" href="/api-reference">
      Comprehensive details about the WOO X API.
    </Card>

    <Card title="Releases" icon="party-horn" href="/changelog">
      News about features and changes in WOO X.
    </Card>
  </CardGroup>
</div>
