Main Content Area
The vertical navigation works great for admin interfaces and documentation sites where you need to display many navigation items in a hierarchical structure.
Explore all navigation patterns, styles, and configurations in Amphibious 2.0
The Amphibious navigation system provides flexible, responsive navigation components that work across all devices. Choose from horizontal, vertical, tabbed, or mobile-first patterns.
The most common navigation pattern for websites and applications.
<nav>
<ul class="horizontal">
<li><a href="#" class="active">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
The new Amphibious 2.0 navigation component with advanced features.
// Create a modern navigation component
const nav = amp.createNavigation('#nav-container', {
sticky: true,
transparent: false,
searchEnabled: true,
themeToggle: true,
githubUrl: 'https://github.com/your-org/amphibious',
githubStars: '1.2k',
currentPath: '/docs/'
});
Ideal for sidebars, admin panels, and documentation sites.
The vertical navigation works great for admin interfaces and documentation sites where you need to display many navigation items in a hierarchical structure.
<nav>
<ul class="vertical">
<li><a href="#" class="active">Dashboard</a></li>
<li>
<a href="#">Products</a>
<ul>
<li><a href="#">All Products</a></li>
<li><a href="#">Add New</a></li>
</ul>
</li>
</ul>
</nav>
Help users understand their location within the site hierarchy.
<nav>
<ul class="breadcrumb">
<li><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#" class="active">Current Page</a></li>
</ul>
</nav>
<!-- Alternative separators -->
<ul class="breadcrumb breadcrumb-slash">...</ul>
<ul class="breadcrumb breadcrumb-arrow">...</ul>
<ul class="breadcrumb breadcrumb-dot">...</ul>
Organize content into switchable panes.
This is the overview content. Tab navigation is perfect for organizing related content into logical sections.
Detailed feature information would go here. Users can switch between tabs without page reload.
Technical documentation and API references would be displayed in this section.
Contact information and support resources are available in this tab.
Responsive navigation patterns optimized for mobile devices.
Mobile navigation collapses into a hamburger menu on small screens. Tap the menu icon to toggle.
Large dropdown menus for complex site structures.
Navigation that stays visible when scrolling.
The navigation above will stick to the top when you scroll.
Lorem ipsum dolor sit amet, consectetur adipiscing elit...
Keep scrolling to see the sticky navigation in action...
More content here...
Even more content...
<nav class="nav-sticky">
<ul class="horizontal">
<li><a href="#">Item 1</a></li>
<li><a href="#">Item 2</a></li>
</ul>
</nav>
Button group style navigation for filtering content.
<nav>
<dl class="filter-nav">
<dt>Filter:</dt>
<dd><a href="#" class="active">All</a></dd>
<dd><a href="#">Popular</a></dd>
<dd><a href="#">Recent</a></dd>
</dl>
</nav>
<nav>, <ul>, <li>)