Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x 20x | <header class="fixed left-0 right-0 top-0 z-50 bg-gray-800">
<nav class="px-4 py-3 mx-auto flex items-center justify-between max-w-[1500px]">
<a routerLink="/" class="flex items-center gap-2 text-2xl font-bold text-white">
<img src="/iconAT.png" class="h-12" alt="TaskManager Logo" />
TaskManager
</a>
<div class="items-center space-x-3 hidden lg:flex">
<a routerLink="/about/info" class="my-button-cancel px-4 py-2 text-sm">Acerca de</a>
<a routerLink="/about/privacy" class="my-button-cancel px-4 py-2 text-sm">Politica de privacidad</a>
<a routerLink="/about/terms" class="my-button-cancel px-4 py-2 text-sm">Terminos y condiciones</a>
</div>
<div class="flex gap-3 hidden lg:flex">
<a routerLink="/login" class="my-button inline-flex items-center justify-center text-sm px-4 py-2">
Iniciar Sesión
<svg class="w-5 h-5 ml-2 -mr-1" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</a>
<a routerLink="/register" class="my-button inline-flex items-center justify-center text-sm px-4 py-2">
Registro
<svg class="w-5 h-5 ml-2 -mr-1" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</a>
</div>
<div class="lg:hidden">
<button id="dropdownWebsite" data-dropdown-toggle="dropdown-2" type="button" class="my-button p-2">
<svg class="w-6 h-6 text-white" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
<path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M5 7h14M5 12h14M5 17h14"/>
</svg>
</button>
<div id="dropdown-2" class="z-10 bg-gray-800 rounded-base shadow-lg w-full block hidden divide-y divide-default-medium">
<div class="flex flex-col gap-4 p-4 text-sm text-body font-medium" aria-labelledby="dropdownWebsite">
<a routerLink="/about/info" class="my-button-cancel px-4 py-2 text-center">
Acerca de
</a>
<a routerLink="/about/privacy" class="my-button-cancel px-4 py-2 text-center">
Politica de privacidad
</a>
<a routerLink="/about/terms" class="my-button-cancel px-4 py-2 text-center">
Terminos y condiciones
</a>
</div>
<div class="flex flex-col gap-4 p-4">
<a routerLink="/login" class="my-button inline-flex items-center justify-center px-4 py-2">
Iniciar Sesión
<svg class="w-5 h-5 ml-2 -mr-1" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</a>
<a routerLink="/register" class="my-button inline-flex items-center justify-center px-4 py-2">
Registro
<svg class="w-5 h-5 ml-2 -mr-1" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" d="M10.293 3.293a1 1 0 011.414 0l6 6a1 1 0 010 1.414l-6 6a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-4.293-4.293a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</a>
</div>
</div>
</div>
</nav>
</header>
<main class="py-20 px-2 min-h-screen bg-gradient-to-br from-slate-950 via-slate-900 to-primary-900">
<router-outlet></router-outlet>
</main>
<app-footer></app-footer> |