lorenzoiovino.com/src/app/menu/menu.component.html
2023-12-29 03:06:56 +01:00

28 lines
925 B
HTML

<nav class="flex items-center justify-between flex-wrap bg-teal-500 p-6">
<div class="flex items-center flex-shrink-0 text-white mr-6">
<span class="font-semibold text-xl tracking-tight">
<a href="/">Lore Iov</a>
</span>
</div>
<div class="text-xl font-bold lg:flex-grow">
<a href="about" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4">
About
</a>
<a href="portfolio" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4">
Portfolio
</a>
<!--<a href="projects" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4">
Projects
</a>-->
<!--<a href="blog" class="block mt-4 lg:inline-block lg:mt-0 text-teal-200 hover:text-white mr-4">
Blog
</a>-->
</div>
<div class="">
<iov-button-cta
[url]="'hello'">
Say Hello
</iov-button-cta>
</div>
</nav>