Last active
March 17, 2025 21:10
-
-
Save Klerith/18a4c2c2551524bb87fc54053e04565d to your computer and use it in GitHub Desktop.
Template para nuestro ejercicio de Vue Rotuer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="flex flex-col h-screen"> | |
<!-- Header --> | |
<header class="flex items-center h-14 px-4 border-b border-gray-300 sm:h-16 md:px-6 lg:px-8"> | |
<div> | |
<a class="flex items-center gap-2 font-semibold" href="#"> | |
<img alt="Vue logo" class="logo" src="@/assets/logo.svg" width="40" height="40" /> | |
</a> | |
</div> | |
<nav class="ml-auto space-x-4 flex items-center h-10 sm:space-x-6"> | |
<a href="#"> Home </a> | |
<a href="#"> Features </a> | |
<a href="#"> Pricing </a> | |
<a href="#"> Contact </a> | |
</nav> | |
</header> | |
<!-- Fin Header --> | |
<!-- Main --> | |
<main class="flex-1 flex items-center justify-center py-6"> | |
<div class="text-center"> | |
<h1 class="text-4xl font-bold tracking-tighter sm:text-5xl"> | |
Bienvenido a nuestro sitio web | |
</h1> | |
<p class="mx-auto max-w-[600px] text-gray-500 md:text-xl"> | |
Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
</p> | |
</div> | |
</main> | |
<!-- Fin Main --> | |
<!-- Footer --> | |
<footer class="flex items-center h-14 px-4 border-t border-gray-300 sm:h-16 md:px-6 lg:px-8"> | |
<p class="flex-1 text-sm text-gray-500 text-center"> | |
© 20xx Acme Corporation. Derechos reservados | |
</p> | |
</footer> | |
<!-- Fin Footer --> | |
</div> | |
</template> |
muchas gracias Fernando, eres un grande 🙌🏻
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
muchas gracias fernando!