tsimport {XDSTopNavMegaMenuFeaturedCard} from '@xds/core/TopNav'
| Guidance | Practices |
|---|---|
| Do | Include a product logo and name in the heading slot to clearly identify the application. |
| Do | Limit primary navigation items to 5 or fewer for quick scanning and minimal cognitive load. |
| Don't | Avoid using TopNav to filter page content — use Tabs or filter controls instead. |
| Don't | Avoid deeply nested navigation hierarchies — keep menus to one level of depth. |
tsx'use client';import {XDSTopNavMegaMenuFeaturedCard} from '@xds/core/TopNav';export default function TopNavMegaMenuFeaturedCardShowcase() {return (<XDSTopNavMegaMenuFeaturedCardtitle="Introducing v2.0"description="Our biggest release yet with new components, faster builds, and a refreshed design language."linkLabel="Explore the release"linkHref="#release"/>);}