Added a lot of components

This commit is contained in:
Lorenzo Iovino 2023-12-29 03:06:56 +01:00
parent 08f8d90f3d
commit c94493a3c5
68 changed files with 1030 additions and 8 deletions

View file

@ -1,3 +1,28 @@
<h1 class="text-3xl font-bold underline">
menu works!
</h1>
<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>