Navbar
A responsive horizontal Navbar
that can support images, links, buttons, and dropdowns
How it works #
The Navbar component provides a responsive horizontal navigation bar that supports branding, navigation links, dropdown menus, and action buttons.
How to use:
This demo shows a typical setup with branding, navigation links, a dropdown menu, and action buttons.
How to use:
- Add the
Navbar
component to your page. - Use
NavbarBrand
for your logo or brand name. - Place navigation links inside
NavbarMenu
usingNavbarStart
andNavbarEnd
for left and right alignment. - Add
NavbarItem
for each link or menu item. UseHasDropdown
andNavbarDropdown
for dropdown menus. - Include action buttons (e.g., sign up, log in) using the
Buttons
andButton
components insideNavbarEnd
.
<Navbar Class="px-3" HasShadow="true">
<NavbarBrand>
<NavbarItem Href="/" IsHoverable="false">
<img src="https://bulma.blazorexpress.com/_content/BlazorExpress.Bulma.Demo.RCL/icons/logo.png" alt="BlazorExpress Bulma" />
<span class="ml-2 is-size-5 has-text-weight-bold">Bulma</span>
</NavbarItem>
</NavbarBrand>
<NavbarMenu Id="navbarBasicExample1">
<NavbarStart>
<NavbarItem Class="mr-1" Href="/">
<i class="bi bi-file-text-fill has-text-link mr-2"></i>Home
</NavbarItem>
<NavbarItem Class="mr-1" Href="/docs">
<i class="bi bi-display-fill has-text-primary mr-2"></i>Docs
</NavbarItem>
<NavbarItem Type="NavbarItemType.Div" HasDropdown="true">
<NavbarLink Class="be-bulma-theme-indicator">More</NavbarLink>
<NavbarDropdown Position="NavbarDropdownPosition.Right">
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">About</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable my-1" Type="NavbarItemType.Link">Jobs</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">Contact</NavbarItem>
</NavbarDropdown>
</NavbarItem>
</NavbarStart>
<NavbarEnd>
<Buttons Size="ButtonSize.Small">
<Button Color="ButtonColor.Primary">Sign up</Button>
<Button>Log in</Button>
</Buttons>
</NavbarEnd>
</NavbarMenu>
</Navbar>
Colors #
The Navbar component supports multiple color themes to match your application's style. You can set the
How to use:
The following sections demonstrate each available color option.
Color
parameter to apply Bulma's built-in color schemes, such as Primary
, Link
, Info
, Success
, Warning
, Danger
, Black
, Dark
, Light
, and White
.
How to use:
- Set the
Color
parameter on theNavbar
component to the desiredNavbarColor
value. - Each color option provides a different visual style for the navbar background and text.
- Use the demos below to preview each color variant and see how it affects the navbar appearance.
Primary #
The Primary color theme applies your application's primary color to the navbar background.
How to use:
This demo shows a navbar with the primary color scheme.
How to use:
- Set
Color="NavbarColor.Primary"
on theNavbar
component. - Use
ButtonColor.Primary
for buttons to match the navbar style.
<Navbar Class="px-3" Color="NavbarColor.Primary">
<NavbarBrand>
<NavbarItem Href="/" IsHoverable="false">
<img src="https://bulma.blazorexpress.com/_content/BlazorExpress.Bulma.Demo.RCL/icons/logo.png" alt="BlazorExpress Bulma" />
<span class="ml-2 is-size-5 has-text-weight-bold">Bulma</span>
</NavbarItem>
</NavbarBrand>
<NavbarMenu Id="navbarBasicExample1">
<NavbarStart>
<NavbarItem Class="mr-1" Href="/">
<i class="bi bi-file-text-fill has-text-link mr-2"></i>Home
</NavbarItem>
<NavbarItem Class="mr-1" Href="/docs">
<i class="bi bi-display-fill has-text-primary mr-2"></i>Docs
</NavbarItem>
<NavbarItem Type="NavbarItemType.Div" HasDropdown="true">
<NavbarLink Class="be-bulma-theme-indicator">More</NavbarLink>
<NavbarDropdown Position="NavbarDropdownPosition.Right">
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">About</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable my-1" Type="NavbarItemType.Link">Jobs</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">Contact</NavbarItem>
</NavbarDropdown>
</NavbarItem>
</NavbarStart>
<NavbarEnd>
<Buttons Size="ButtonSize.Small">
<Button Color="ButtonColor.Primary" IsSoftVersion="true">Sign up</Button>
<Button Color="ButtonColor.Primary" IsLightVersion="true">Log in</Button>
</Buttons>
</NavbarEnd>
</NavbarMenu>
</Navbar>
Link #
The Link color theme uses the link color for the navbar background, providing a distinct accent.
How to use:
This demo displays the navbar with the link color scheme.
How to use:
- Set
Color="NavbarColor.Link"
on theNavbar
component. - Style buttons with
ButtonColor.Link
for a consistent look.
<Navbar Class="px-3" Color="NavbarColor.Link">
<NavbarBrand>
<NavbarItem Href="/" IsHoverable="false">
<img src="https://bulma.blazorexpress.com/_content/BlazorExpress.Bulma.Demo.RCL/icons/logo.png" alt="BlazorExpress Bulma" />
<span class="ml-2 is-size-5 has-text-weight-bold">Bulma</span>
</NavbarItem>
</NavbarBrand>
<NavbarMenu Id="navbarBasicExample1">
<NavbarStart>
<NavbarItem Class="mr-1" Href="/">
<i class="bi bi-file-text-fill has-text-link mr-2"></i>Home
</NavbarItem>
<NavbarItem Class="mr-1" Href="/docs">
<i class="bi bi-display-fill has-text-primary mr-2"></i>Docs
</NavbarItem>
<NavbarItem Type="NavbarItemType.Div" HasDropdown="true">
<NavbarLink Class="be-bulma-theme-indicator">More</NavbarLink>
<NavbarDropdown Position="NavbarDropdownPosition.Right">
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">About</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable my-1" Type="NavbarItemType.Link">Jobs</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">Contact</NavbarItem>
</NavbarDropdown>
</NavbarItem>
</NavbarStart>
<NavbarEnd>
<Buttons Size="ButtonSize.Small">
<Button Color="ButtonColor.Link" IsSoftVersion="true">Sign up</Button>
<Button Color="ButtonColor.Link" IsLightVersion="true">Log in</Button>
</Buttons>
</NavbarEnd>
</NavbarMenu>
</Navbar>
Info #
The Info color theme gives the navbar an informational blue background.
How to use:
This demo shows the info color applied to the navbar.
How to use:
- Set
Color="NavbarColor.Info"
on theNavbar
component. - Use
ButtonColor.Info
for action buttons to match the navbar.
<Navbar Class="px-3" Color="NavbarColor.Info">
<NavbarBrand>
<NavbarItem Href="/" IsHoverable="false">
<img src="https://bulma.blazorexpress.com/_content/BlazorExpress.Bulma.Demo.RCL/icons/logo.png" alt="BlazorExpress Bulma" />
<span class="ml-2 is-size-5 has-text-weight-bold">Bulma</span>
</NavbarItem>
</NavbarBrand>
<NavbarMenu Id="navbarBasicExample1">
<NavbarStart>
<NavbarItem Class="mr-1" Href="/">
<i class="bi bi-file-text-fill has-text-link mr-2"></i>Home
</NavbarItem>
<NavbarItem Class="mr-1" Href="/docs">
<i class="bi bi-display-fill has-text-primary mr-2"></i>Docs
</NavbarItem>
<NavbarItem Type="NavbarItemType.Div" HasDropdown="true">
<NavbarLink Class="be-bulma-theme-indicator">More</NavbarLink>
<NavbarDropdown Position="NavbarDropdownPosition.Right">
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">About</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable my-1" Type="NavbarItemType.Link">Jobs</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">Contact</NavbarItem>
</NavbarDropdown>
</NavbarItem>
</NavbarStart>
<NavbarEnd>
<Buttons Size="ButtonSize.Small">
<Button Color="ButtonColor.Info" IsSoftVersion="true">Sign up</Button>
<Button Color="ButtonColor.Info" IsLightVersion="true">Log in</Button>
</Buttons>
</NavbarEnd>
</NavbarMenu>
</Navbar>
Success #
The Success color theme applies a green background, ideal for positive or confirmation contexts.
How to use:
This demo features the success color scheme.
How to use:
- Set
Color="NavbarColor.Success"
on theNavbar
component. - Style buttons with
ButtonColor.Success
for a unified appearance.
<Navbar Class="px-3" Color="NavbarColor.Success">
<NavbarBrand>
<NavbarItem Href="/" IsHoverable="false">
<img src="https://bulma.blazorexpress.com/_content/BlazorExpress.Bulma.Demo.RCL/icons/logo.png" alt="BlazorExpress Bulma" />
<span class="ml-2 is-size-5 has-text-weight-bold">Bulma</span>
</NavbarItem>
</NavbarBrand>
<NavbarMenu Id="navbarBasicExample1">
<NavbarStart>
<NavbarItem Class="mr-1" Href="/">
<i class="bi bi-file-text-fill has-text-link mr-2"></i>Home
</NavbarItem>
<NavbarItem Class="mr-1" Href="/docs">
<i class="bi bi-display-fill has-text-primary mr-2"></i>Docs
</NavbarItem>
<NavbarItem Type="NavbarItemType.Div" HasDropdown="true">
<NavbarLink Class="be-bulma-theme-indicator">More</NavbarLink>
<NavbarDropdown Position="NavbarDropdownPosition.Right">
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">About</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable my-1" Type="NavbarItemType.Link">Jobs</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">Contact</NavbarItem>
</NavbarDropdown>
</NavbarItem>
</NavbarStart>
<NavbarEnd>
<Buttons Size="ButtonSize.Small">
<Button Color="ButtonColor.Success" IsSoftVersion="true">Sign up</Button>
<Button Color="ButtonColor.Success" IsLightVersion="true">Log in</Button>
</Buttons>
</NavbarEnd>
</NavbarMenu>
</Navbar>
Warning #
The Warning color theme uses a yellow background to draw attention or indicate caution.
How to use:
This demo highlights the warning color style.
How to use:
- Set
Color="NavbarColor.Warning"
on theNavbar
component. - Use
ButtonColor.Warning
for matching action buttons.
<Navbar Class="px-3" Color="NavbarColor.Warning">
<NavbarBrand>
<NavbarItem Href="/" IsHoverable="false">
<img src="https://bulma.blazorexpress.com/_content/BlazorExpress.Bulma.Demo.RCL/icons/logo.png" alt="BlazorExpress Bulma" />
<span class="ml-2 is-size-5 has-text-weight-bold">Bulma</span>
</NavbarItem>
</NavbarBrand>
<NavbarMenu Id="navbarBasicExample1">
<NavbarStart>
<NavbarItem Class="mr-1" Href="/">
<i class="bi bi-file-text-fill has-text-link mr-2"></i>Home
</NavbarItem>
<NavbarItem Class="mr-1" Href="/docs">
<i class="bi bi-display-fill has-text-primary mr-2"></i>Docs
</NavbarItem>
<NavbarItem Type="NavbarItemType.Div" HasDropdown="true">
<NavbarLink Class="be-bulma-theme-indicator">More</NavbarLink>
<NavbarDropdown Position="NavbarDropdownPosition.Right">
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">About</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable my-1" Type="NavbarItemType.Link">Jobs</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">Contact</NavbarItem>
</NavbarDropdown>
</NavbarItem>
</NavbarStart>
<NavbarEnd>
<Buttons Size="ButtonSize.Small">
<Button Color="ButtonColor.Warning" IsSoftVersion="true">Sign up</Button>
<Button Color="ButtonColor.Warning" IsLightVersion="true">Log in</Button>
</Buttons>
</NavbarEnd>
</NavbarMenu>
</Navbar>
Danger #
The Danger color theme applies a red background, suitable for error or alert contexts.
How to use:
This demo demonstrates the danger color scheme.
How to use:
- Set
Color="NavbarColor.Danger"
on theNavbar
component. - Style buttons with
ButtonColor.Danger
for consistency.
<Navbar Class="px-3" Color="NavbarColor.Danger">
<NavbarBrand>
<NavbarItem Href="/" IsHoverable="false">
<img src="https://bulma.blazorexpress.com/_content/BlazorExpress.Bulma.Demo.RCL/icons/logo.png" alt="BlazorExpress Bulma" />
<span class="ml-2 is-size-5 has-text-weight-bold">Bulma</span>
</NavbarItem>
</NavbarBrand>
<NavbarMenu Id="navbarBasicExample1">
<NavbarStart>
<NavbarItem Class="mr-1" Href="/">
<i class="bi bi-file-text-fill has-text-link mr-2"></i>Home
</NavbarItem>
<NavbarItem Class="mr-1" Href="/docs">
<i class="bi bi-display-fill has-text-primary mr-2"></i>Docs
</NavbarItem>
<NavbarItem Type="NavbarItemType.Div" HasDropdown="true">
<NavbarLink Class="be-bulma-theme-indicator">More</NavbarLink>
<NavbarDropdown Position="NavbarDropdownPosition.Right">
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">About</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable my-1" Type="NavbarItemType.Link">Jobs</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">Contact</NavbarItem>
</NavbarDropdown>
</NavbarItem>
</NavbarStart>
<NavbarEnd>
<Buttons Size="ButtonSize.Small">
<Button Color="ButtonColor.Danger" IsSoftVersion="true">Sign up</Button>
<Button Color="ButtonColor.Danger" IsLightVersion="true">Log in</Button>
</Buttons>
</NavbarEnd>
</NavbarMenu>
</Navbar>
Black #
The Black color theme gives the navbar a solid black background for a bold look.
How to use:
This demo shows the black color applied to the navbar.
How to use:
- Set
Color="NavbarColor.Black"
on theNavbar
component. - Use
ButtonColor.Black
for matching buttons.
<Navbar Class="px-3" Color="NavbarColor.Black">
<NavbarBrand>
<NavbarItem Href="/" IsHoverable="false">
<img src="https://bulma.blazorexpress.com/_content/BlazorExpress.Bulma.Demo.RCL/icons/logo.png" alt="BlazorExpress Bulma" />
<span class="ml-2 is-size-5 has-text-weight-bold">Bulma</span>
</NavbarItem>
</NavbarBrand>
<NavbarMenu Id="navbarBasicExample1">
<NavbarStart>
<NavbarItem Class="mr-1" Href="/">
<i class="bi bi-file-text-fill has-text-link mr-2"></i>Home
</NavbarItem>
<NavbarItem Class="mr-1" Href="/docs">
<i class="bi bi-display-fill has-text-primary mr-2"></i>Docs
</NavbarItem>
<NavbarItem Type="NavbarItemType.Div" HasDropdown="true">
<NavbarLink Class="be-bulma-theme-indicator">More</NavbarLink>
<NavbarDropdown Position="NavbarDropdownPosition.Right">
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">About</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable my-1" Type="NavbarItemType.Link">Jobs</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">Contact</NavbarItem>
</NavbarDropdown>
</NavbarItem>
</NavbarStart>
<NavbarEnd>
<Buttons Size="ButtonSize.Small">
<Button Color="ButtonColor.Black" IsSoftVersion="true">Sign up</Button>
<Button Color="ButtonColor.Black" IsLightVersion="true">Log in</Button>
</Buttons>
</NavbarEnd>
</NavbarMenu>
</Navbar>
Dark #
The Dark color theme provides a dark gray background for a modern, subtle appearance.
How to use:
This demo features the dark color scheme.
How to use:
- Set
Color="NavbarColor.Dark"
on theNavbar
component. - Style buttons with
ButtonColor.Dark
for a cohesive look.
<Navbar Class="px-3" Color="NavbarColor.Dark">
<NavbarBrand>
<NavbarItem Href="/" IsHoverable="false">
<img src="https://bulma.blazorexpress.com/_content/BlazorExpress.Bulma.Demo.RCL/icons/logo.png" alt="BlazorExpress Bulma" />
<span class="ml-2 is-size-5 has-text-weight-bold">Bulma</span>
</NavbarItem>
</NavbarBrand>
<NavbarMenu Id="navbarBasicExample1">
<NavbarStart>
<NavbarItem Class="mr-1" Href="/">
<i class="bi bi-file-text-fill has-text-link mr-2"></i>Home
</NavbarItem>
<NavbarItem Class="mr-1" Href="/docs">
<i class="bi bi-display-fill has-text-primary mr-2"></i>Docs
</NavbarItem>
<NavbarItem Type="NavbarItemType.Div" HasDropdown="true">
<NavbarLink Class="be-bulma-theme-indicator">More</NavbarLink>
<NavbarDropdown Position="NavbarDropdownPosition.Right">
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">About</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable my-1" Type="NavbarItemType.Link">Jobs</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">Contact</NavbarItem>
</NavbarDropdown>
</NavbarItem>
</NavbarStart>
<NavbarEnd>
<Buttons Size="ButtonSize.Small">
<Button Color="ButtonColor.Dark" IsSoftVersion="true">Sign up</Button>
<Button Color="ButtonColor.Dark" IsLightVersion="true">Log in</Button>
</Buttons>
</NavbarEnd>
</NavbarMenu>
</Navbar>
Light #
The Light color theme applies a light gray background, ideal for clean and minimal interfaces.
How to use:
This demo displays the light color scheme.
How to use:
- Set
Color="NavbarColor.Light"
on theNavbar
component. - Use
ButtonColor.Light
for action buttons to match the navbar.
<Navbar Class="px-3" Color="NavbarColor.Light">
<NavbarBrand>
<NavbarItem Href="/" IsHoverable="false">
<img src="https://bulma.blazorexpress.com/_content/BlazorExpress.Bulma.Demo.RCL/icons/logo.png" alt="BlazorExpress Bulma" />
<span class="ml-2 is-size-5 has-text-weight-bold">Bulma</span>
</NavbarItem>
</NavbarBrand>
<NavbarMenu Id="navbarBasicExample1">
<NavbarStart>
<NavbarItem Class="mr-1" Href="/">
<i class="bi bi-file-text-fill has-text-link mr-2"></i>Home
</NavbarItem>
<NavbarItem Class="mr-1" Href="/docs">
<i class="bi bi-display-fill has-text-primary mr-2"></i>Docs
</NavbarItem>
<NavbarItem Type="NavbarItemType.Div" HasDropdown="true">
<NavbarLink Class="be-bulma-theme-indicator">More</NavbarLink>
<NavbarDropdown Position="NavbarDropdownPosition.Right">
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">About</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable my-1" Type="NavbarItemType.Link">Jobs</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">Contact</NavbarItem>
</NavbarDropdown>
</NavbarItem>
</NavbarStart>
<NavbarEnd>
<Buttons Size="ButtonSize.Small">
<Button Color="ButtonColor.Light" IsSoftVersion="true">Sign up</Button>
<Button Color="ButtonColor.Light" IsLightVersion="true">Log in</Button>
</Buttons>
</NavbarEnd>
</NavbarMenu>
</Navbar>
White #
The White color theme gives the navbar a white background for a classic, clean look.
How to use:
This demo shows the white color applied to the navbar.
How to use:
- Set
Color="NavbarColor.White"
on theNavbar
component. - Style buttons with
ButtonColor.White
for a unified appearance.
<Navbar Class="px-3" Color="NavbarColor.White">
<NavbarBrand>
<NavbarItem Href="/" IsHoverable="false">
<img src="https://bulma.blazorexpress.com/_content/BlazorExpress.Bulma.Demo.RCL/icons/logo.png" alt="BlazorExpress Bulma" />
<span class="ml-2 is-size-5 has-text-weight-bold">Bulma</span>
</NavbarItem>
</NavbarBrand>
<NavbarMenu Id="navbarBasicExample1">
<NavbarStart>
<NavbarItem Class="mr-1" Href="/">
<i class="bi bi-file-text-fill has-text-link mr-2"></i>Home
</NavbarItem>
<NavbarItem Class="mr-1" Href="/docs">
<i class="bi bi-display-fill has-text-primary mr-2"></i>Docs
</NavbarItem>
<NavbarItem Type="NavbarItemType.Div" HasDropdown="true">
<NavbarLink Class="be-bulma-theme-indicator">More</NavbarLink>
<NavbarDropdown Position="NavbarDropdownPosition.Right">
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">About</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable my-1" Type="NavbarItemType.Link">Jobs</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">Contact</NavbarItem>
</NavbarDropdown>
</NavbarItem>
</NavbarStart>
<NavbarEnd>
<Buttons Size="ButtonSize.Small">
<Button Color="ButtonColor.White" IsSoftVersion="true">Sign up</Button>
<Button Color="ButtonColor.White" IsLightVersion="true">Log in</Button>
</Buttons>
</NavbarEnd>
</NavbarMenu>
</Navbar>
Transparent #
The Transparent option allows the navbar to have a transparent background, making it blend seamlessly with the page content or background images.
How to use:
This demo illustrates a transparent navbar overlaying the page content.
How to use:
- Set
IsTransparent="true"
on theNavbar
component. - Combine with custom classes or styles for further visual customization.
<Navbar Class="px-3" IsTransparent="true">
<NavbarBrand>
<NavbarItem Href="/" IsHoverable="false">
<img src="https://bulma.blazorexpress.com/_content/BlazorExpress.Bulma.Demo.RCL/icons/logo.png" alt="BlazorExpress Bulma" />
<span class="ml-2 is-size-5 has-text-weight-bold">Bulma</span>
</NavbarItem>
</NavbarBrand>
<NavbarMenu Id="navbarBasicExample1">
<NavbarStart>
<NavbarItem Class="mr-1" Href="/">
<i class="bi bi-file-text-fill has-text-link mr-2"></i>Home
</NavbarItem>
<NavbarItem Class="mr-1" Href="/docs">
<i class="bi bi-display-fill has-text-primary mr-2"></i>Docs
</NavbarItem>
<NavbarItem Type="NavbarItemType.Div" HasDropdown="true">
<NavbarLink Class="be-bulma-theme-indicator">More</NavbarLink>
<NavbarDropdown Position="NavbarDropdownPosition.Right">
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">About</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable my-1" Type="NavbarItemType.Link">Jobs</NavbarItem>
<NavbarItem Class="be-bulma-theme-item is-clickable" Type="NavbarItemType.Link">Contact</NavbarItem>
</NavbarDropdown>
</NavbarItem>
</NavbarStart>
<NavbarEnd>
<Buttons Size="ButtonSize.Small">
<Button Color="ButtonColor.Primary">Sign up</Button>
<Button>Log in</Button>
</Buttons>
</NavbarEnd>
</NavbarMenu>
</Navbar>