Input

Blade component for Simple Navigation bar.

The Navigation bar with basic style and four different sizes and two different positions!


Slots

Simple NavBar with three slots! (title,center,right)

<x-navbar md>
    <x-slot name="title">
        SiteName!
    </x-slot>
    <x-slot name="center">
        Center area.
    </x-slot>
    <x-slot name="right">
        <x-nav>
            <x-nav-item href="#login">Login</x-nav-item>
            <x-nav-item href="#signup">SignUp</x-nav-item>
        </x-nav>
    </x-slot>
</x-navbar>

Result

Center area.

Sizes

Four sizes: sm, md, lg, xl

<x-navbar sm > ... </x-navbar>
<x-navbar md > ... </x-navbar>
<x-navbar lg > ... </x-navbar>
<x-navbar xl > ... </x-navbar>

Result


Bottom

NavBar fixed in Bottom!

<x-navbar md
    bottom >
    ...
</x-navbar>

© 2021, BladeTail-UI.

Made with by Deva