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

# Help Articles

export const HomeWrapper = ({children}) => {
  return <div className="max-w-[1440px] mx-auto w-full">{children}</div>;
};

export const Banner = ({title, subtitle}) => {
  return <div className="bg-black text-white text-center px-8 py-12 mb-8">
      <h1 className="text-4xl font-bold mb-3">{title}</h1>
      <p className="text-lg m-0">{subtitle}</p>
    </div>;
};

<Banner title="nTop Support" subtitle="" />

<HomeWrapper>
  <CardGroup className="homecards_container" cols={3}>
    <Card title="Knowledge Base" href="/help-articles/knowledge-base/index" cta="See All">
      Search for answers, how-tos, and examples on a variety of topics.
    </Card>

    <Card title="Access and Installation" href="/help-articles/access-and-installation/index" cta="See All">
      Get help with account issues, software setup, and system requirements.
    </Card>

    <Card title="What's New" href="/help-articles/whats-new/index" cta="See All">
      Learn about improvements in the latest release of nTop.
    </Card>
  </CardGroup>
</HomeWrapper>
