GC Design System Components
GC Design System Start to use Page templates overview Basic page Components overview Breadcrumbs Button Card Checkboxes Container Date input Date modified Details Error message Error summary Fieldset File uploader Footer Grid Header Heading Icon Input Language toggle Link Notice Pagination Radios Screenreader-only Search Select Side navigation Signature Stepper Table Text Textarea Theme and topic menu Top navigation CSS shortcuts overview Reset styles Responsive layout State Box sizing Container sizing Display Overflow Position Visibility Font Font family Font size Font style Font weight Line height Link colour Link size Link text decoration List style Text align Text colour Text overflow Text transform Word break Margin Padding Align content Align items Align self Flex Flex direction Flex grow Flex shrink Flex wrap Gap Grid columns Grid rows Justify content Justify items Justify self Order Place content Place items Place self Background colour Border colour Border radius Border style Border width Icon names Icon size Image Cursor Pointer events Transition Styles overview Design tokens Colour tokens Spacing tokens Typography tokens Contact us Get involved Find a demo

Top navigation
<gcds-top-nav>

Also called: site menu, navigation, navbar.

A top navigation is a horizontal list of page links.

Top navigation component preview

On this page

Coding and accessibility for top navigation

Add the top navigation to each page

  • Implement the top navigation in the website layout so that it's present on every page.
  • Opt to add a nav group with a second level of navigation by placing the <gcds-nav-link> in a <gcds-nav-group>.

Use the top navigation with other components

  • If using breadcrumbs, align the content hierarchy in both set of links, so both components reflect a similar path through the site.
  • If you're using the header component, add the top navigation directly to the header by passing a child element with the slot="menu" attribute into the header. This will place the top nav in the header after the language toggle, signature, and search slots.

Examples Explore the different ways you can configure the component. Each example shows a working implementation and ready-to-copy code.

In this section

Essential attributes These attributes are needed for the component to function correctly.

label

The label attribute defines the label for the navigation landmark.

<gcds-top-nav label="Top navigation component preview">
  <gcds-nav-link href="#" slot="home">GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Why GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Contact us</gcds-nav-link>
</gcds-top-nav>

The menu-label attribute of the gcds-nav-group subcomponent defines the label for the nav group menu.

<gcds-top-nav label="Top navigation component preview">
  <gcds-nav-link href="#" slot="home">GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Why GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Contact us</gcds-nav-link>
  <gcds-nav-group menu-label="Features submenu" open-trigger="Features">
    <gcds-nav-link href="#">Personalize messages</gcds-nav-link>
    <gcds-nav-link href="#">Schedule messages</gcds-nav-link>
  </gcds-nav-group>
</gcds-top-nav>

open-trigger (gcds-nav-group)

The open-trigger attribute of the gcds-nav-group subcomponent defines the label for the collapsed button trigger.

<gcds-top-nav label="Top navigation component preview">
  <gcds-nav-link href="#" slot="home">GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Why GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Contact us</gcds-nav-link>
  <gcds-nav-group menu-label="Features submenu" open-trigger="Features">
    <gcds-nav-link href="#">Personalize messages</gcds-nav-link>
    <gcds-nav-link href="#">Schedule messages</gcds-nav-link>
  </gcds-nav-group>
</gcds-top-nav>

The href attribute of the gcds-nav-link subcomponent specifies the URL of the page the link goes to.

<gcds-top-nav label="Top navigation component preview">
  <gcds-nav-link href="#" slot="home">GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Why GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Contact us</gcds-nav-link>
</gcds-top-nav>

Optional attributes These attributes allow you to customize or extend the component’s behaviour and presentation.

alignment

The alignment attribute defines the alignment of the top navigation. The available options are:

  • start (default)
  • end

<gcds-top-nav alignment="end" label="Top navigation component preview">
  <gcds-nav-link href="#" slot="home">GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Why GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Contact us</gcds-nav-link>
</gcds-top-nav>

close-trigger (gcds-nav-group)

The close-trigger attribute of the gcds-nav-group subcomponent defines the label for the expanded button trigger.

<gcds-top-nav label="Top navigation component preview">
  <gcds-nav-link href="#" slot="home">GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Why GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Contact us</gcds-nav-link>
  <gcds-nav-group menu-label="Features submenu" open-trigger="Features" close-trigger="Close Features">
    <gcds-nav-link href="#">Personalize messages</gcds-nav-link>
    <gcds-nav-link href="#">Schedule messages</gcds-nav-link>
  </gcds-nav-group>
</gcds-top-nav>

open (gcds-nav-group)

The open attribute of the gcds-nav-group subcomponent controls whether the nav group is expanded or not. By default, it is set to false.

<gcds-top-nav label="Top navigation component preview">
  <gcds-nav-link href="#" slot="home">GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Why GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Contact us</gcds-nav-link>
  <gcds-nav-group menu-label="Features submenu" open-trigger="Features" open>
    <gcds-nav-link href="#">Personalize messages</gcds-nav-link>
    <gcds-nav-link href="#">Schedule messages</gcds-nav-link>
  </gcds-nav-group>
</gcds-top-nav>

The current attribute of the gcds-nav-link subcomponent indicates whether the page is current or not.

<gcds-top-nav label="Top navigation component preview">
  <gcds-nav-link href="#" slot="home">GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Why GC Notify</gcds-nav-link>
  <gcds-nav-link current href="#">Contact us</gcds-nav-link>
</gcds-top-nav>

Slots The default slot allows you to inject custom content into the component’s primary content area, and named slots, into specific areas.

default

The default slot is for adding navigation groups and navigation links.

<gcds-top-nav label="Top navigation component preview">
  <gcds-nav-link href="#" slot="home">GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Why GC Notify</gcds-nav-link>
  <gcds-nav-link href="#">Contact us</gcds-nav-link>
  <gcds-nav-group menu-label="Features submenu" open-trigger="Features">
    <gcds-nav-link href="#">Personalize messages</gcds-nav-link>
    <gcds-nav-link href="#">Schedule messages</gcds-nav-link>
  </gcds-nav-group>
</gcds-top-nav>

home

The home slot is for adding the home link or site title.

<gcds-top-nav label="Top navigation component preview">
  <gcds-nav-link href="#" slot="home">GC Notify</gcds-nav-link>
</gcds-top-nav>

default (gcds-nav-group)

The default slot of the gcds-nav-group subcomponent is for adding the list of navigation links.

<gcds-top-nav label="Top navigation component preview">
  <gcds-nav-group menu-label="Features submenu" open-trigger="Features">
    <gcds-nav-link href="#">Personalize messages</gcds-nav-link>
    <gcds-nav-link href="#">Schedule messages</gcds-nav-link>
  </gcds-nav-group>
</gcds-top-nav>

The default slot of the gcds-nav-link subcomponent is for adding the navigation link content.

<gcds-nav-link href="#">GC Notify</gcds-nav-link>

Code builder

Generate an instance of the component you need by selecting its code properties.

  1. Explore by choosing different code values to generate the instance you want.

  2. Get the code and pull it into your environment.

  3. Add any copy you need to the component (like text for a label).

Note: The code builder uses English for all code elements, which follows standard practice.

Help us improve

Have questions or a request? Give feedback on our contact form.

Something's wrong? Raise it through GitHub with an account. You'll have access to the team's direct responses, progress made on your issue, and issues raised by others.

Give feedback Report an issue on GitHub
2026-05-20