basic structure and a bit of content
Some checks failed
Build and docker image / Build (pull_request) Failing after 14s

This commit is contained in:
2024-05-13 18:19:15 +02:00
parent 52e4477422
commit 3f1c8cb6aa
13 changed files with 772 additions and 27 deletions

View File

@@ -0,0 +1,20 @@
const Navigation = () => {
return(
<nav id={'header'} class={'flex-no-wrap sticky w-screen py-2 shadow-black/5'}>
<ul class="flex">
<li class="mr-3">
<a class="inline-block border border-blue-500 rounded py-1 px-3 bg-blue-500 text-white" href="#">Active Pill</a>
</li>
<li class="mr-3">
<a class="inline-block border border-white rounded hover:border-gray-200 text-blue-500 hover:bg-gray-200 py-1 px-3" href="#">Pill</a>
</li>
<li class="mr-3">
<a class="inline-block py-1 px-3 text-gray-400 cursor-not-allowed" href="#">Disabled Pill</a>
</li>
</ul>
</nav>
);
};
export { Navigation }