Tailwind CSS Navbar - Taco Vue

The navbar is an important UI/UX component that helps users quickly visit any site section. Below we are presenting an example of the Navbar component that you can use in your Taco project.

<Navbar 
  :items="linksNavbar"
  :full-width="false"
  color="white"
  variant="filled"
  :blurred="true"
  :shadow="true"
>
    <template #title>
        Navbar Component
    </template>
    <template #button>
        <Button size="md" variant="gradient" color="blue">
            Buy
        </Button>
    </template>
</Navbar>