These components are located near the top of views and help orient customers when they arrive to new pages.
<header class="header header--global">
<a class="mh-4x">
<tk-logo-usertesting
aria-label="UserTesting logo"
class="l-block header__logo"
></tk-logo-usertesting>
</a>
Global Header
</header>
Header is used to anchor each view in the product. It is consistent across all views to present a familiar pattern no matter which view you are on.
<header class="header header--global header--employee">
<a class="mh-4x">
<tk-logo-usertesting
aria-label="UserTesting logo"
class="l-block header__logo"
></tk-logo-usertesting>
</a>
Internal Header
</header>
Our coworkers are sometimes tasked with assisting customers with their research. The internal pattern helps indicate to our team that they are in a customer’s environment.
<div class="site-subheader">
<div class="site-subheader__wrapper">
<tk-dropdown trigger-text="Workspace" variant="secondary"></tk-dropdown>
</div>
</div>
The subheader always appears under the header. It’s a grouping that links to similar pages. This allows the customer easy access to a variety of pages. Subheaders can also contain components like buttons and search.
<nav role="navigation" class="nav">
<ul class="breadcrumbs">
<li class="breadcrumbs__item">
<a href="#" class="breadcrumbs__link">
<tk-icon
name="home"
size="small">
</tk-icon>
</a>
</li>
<li class="breadcrumbs__item">
<a href="#" class="breadcrumbs__link">
Link
</a>
</li>
<li class="breadcrumbs__item">
<a href="#" class="breadcrumbs__link">
Link
</a>
</li>
<li class="breadcrumbs__item">
<a href="#" class="breadcrumbs__link">
Link
</a>
</li>
</ul>
</nav>
Breadcrumbs are a collection of links used to navigate between pages. They help orient a customer on where they are in UserTesting. We use the home icon to represent dashboard.