> ## 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.

# Release updates

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="What's New?" subtitle="Learn about improvements in the latest release of nTop." />

<HomeWrapper>
  <CardGroup className="homecards_container" cols={2}>
    <Card title="What's New" href="/help-articles/whats-new/whats-new/ntop-5-40-what-s-new" cta="See All">
      Learn about improvements in the latest release of nTop.
    </Card>

    <Card title="Backwards Compatibility Notices" href="/help-articles/knowledge-base/backwards-compatibility-notices/ntop-5-20-curve-and-profiles-update" cta="See All" />
  </CardGroup>
</HomeWrapper>
