> ## Documentation Index
> Fetch the complete documentation index at: https://gcore-doc-1674.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Gcore product documentation

export const HomeHelpBar = () => {
  return <div className="homepage_help not-prose">
      <div className="homepage_help_separator" aria-hidden="true" />
      <div className="homepage_help_inner">
        <p className="homepage_help_text">
          <span className="homepage_help_lead">Need help?</span>
          {" "}
          We're here 24/7, including holidays.
        </p>
        <nav className="homepage_help_actions" aria-label="Contact options">
          <a href="https://support.gcore.com/hc/en-us/requests/new" className="homepage_help_button">
            Open a ticket
          </a>
          <a href="https://discord.gg/gcore" className="homepage_help_button">
            Discord
          </a>
        </nav>
      </div>
    </div>;
};

export const GcoreHero = () => {
  return <section className="gcore_hero not-prose w-full">
      <div className="gcore_hero_inner mx-auto flex w-full max-w-6xl flex-col items-center gap-3 text-center">
        <h1 className="gcore_hero_title text-center font-bold">
          <span className="text-orange-600">Gcore</span>
          <span className="text-gray-800 dark:text-white"> Documentation</span>
        </h1>
        <p className="gcore_hero_subtitle w-full max-w-2xl text-center text-neutral-700 dark:text-neutral-300">
          Build, scale, and protect your applications at the edge.
        </p>
      </div>
    </section>;
};

export const HomeWrapper = ({children}) => {
  return <div className="homepage_wrapper">
      {children}
    </div>;
};

<HomeWrapper>
  <GcoreHero />

  ***

  <div className="homepage_account_bar not-prose">
    <CardGroup cols={3}>
      <Card horizontal title="Account Settings" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/user.svg" href="/account-settings">
        Manage users, access, and account-level configuration.
      </Card>

      <Card horizontal title="Developer Tools" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/dev-tools.svg" href="/developer-tools">
        Provision and manage Gcore resources with Terraform and the MCP server.
      </Card>

      <Card horizontal title="API Reference" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/api_reference.svg" href="/api-reference/overview">
        Browse REST APIs, authentication, and integration guides.
      </Card>
    </CardGroup>
  </div>

  <div className="homepage_product_cards not-prose">
    <p className="homepage_explore_products_heading">EXPLORE PRODUCTS</p>

    <CardGroup cols={4}>
      <Card horizontal title="CDN" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/cdn.svg" href="/cdn">
        Deliver content globally with caching and acceleration.
      </Card>

      <Card horizontal title="Colocation" icon="https://mintcdn.com/gcore-doc-1674/6EMCngPXyx03tMVX/images/docs/portal-icons/colocation.svg?fit=max&auto=format&n=6EMCngPXyx03tMVX&q=85&s=13d847629be9101f710ebfd7702e1969" href="/colocation/overview" width="20" height="20" data-path="images/docs/portal-icons/colocation.svg">
        House your own hardware in Gcore Tier II and above data centers worldwide.
      </Card>

      <Card horizontal title="DDoS Protection" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/ddos.svg" href="/ddos-protection">
        Mitigate volumetric attacks on your infrastructure.
      </Card>

      <Card horizontal title="AI" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/ai_infrastructure.svg" href="/edge-ai">
        Run and deploy AI models across edge and cloud with low latency.
      </Card>

      <Card horizontal title="Edge Cloud" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/cloud.svg" href="/cloud">
        Provision compute resources globally for scalable workloads.
      </Card>

      <Card horizontal title="Edge Proxy" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/shield_proxy.svg" href="/edge-proxy">
        Network-layer protection and traffic routing for your services.
      </Card>

      <Card horizontal title="FastEdge" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/fast_edge.svg" href="/fastedge">
        Run serverless logic at the edge using WebAssembly.
      </Card>

      <Card horizontal title="Gclaw" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/gclaw.svg" href="/gclaw">
        Launch AI agents instantly.
      </Card>

      <Card horizontal title="Hosting" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/basic_vm.svg" href="/hosting">
        Host websites and backend services on managed platforms.
      </Card>

      <Card horizontal title="Managed DNS" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/dns.svg" href="/dns">
        Manage DNS zones and routing with high availability.
      </Card>

      <Card horizontal title="Object Storage" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/storage.svg" href="/storage">
        Store and manage large-scale data with high availability.
      </Card>

      <Card horizontal title="Streaming" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/streaming.svg" href="/streaming">
        Deliver live and on-demand video globally.
      </Card>

      <Card horizontal title="WAAP" icon="https://mintlify.s3.us-west-1.amazonaws.com/gcore-doc-1674/images/docs/portal-icons/waap.svg" href="/waap">
        Protect web applications and APIs from L7 attacks.
      </Card>
    </CardGroup>
  </div>

  <HomeHelpBar />
</HomeWrapper>
