-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
<nav class="container mx-auto flex justify-between p-4"> | ||
<a href="/" class="flex gap-2 items-center justify-center hover:underline"> | ||
<a href="/" class="flex gap-2 items-center justify-center hover:underline underline-offset-4"> | ||
<img class="w-5 mt-1" src="/logo.svg" alt="Logo de Linkhub" > | ||
<span>LinkHub</span> | ||
</a> | ||
<div class="gap-3"> | ||
<a class="no-underline hover:underline" href="/all">Todos los Recursos</a> | ||
<div class="flex gap-3"> | ||
<a class="hover:underline underline-offset-4" href="/contribution">Colaboraciones</a> | ||
<a class="hover:underline underline-offset-4" href="/all">Recursos</a> | ||
</div> | ||
</nav> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
import Layout from "@layouts/Layout.astro" | ||
--- | ||
|
||
<Layout title="LinkHub"> | ||
<section class="my-8"> | ||
<h2 class="text-xl my-4">¿Como contribuir?</h2> | ||
<p class="text-base mb-2"> | ||
En el repositorio de <a href="https://github.com/doneber/linkhub/blob/main/CONTRIBUTING.md" class="underline underline-offset-2 text-blue-500">GitHub</a> puedes encontrar el documenmento completo. | ||
</p> | ||
<p class="text-base mb-6"> | ||
O simplemente crea un issue en nuestro repositorio con tus sugerencias. | ||
</p> | ||
<a href="https://github.com/doneber/linkhub/issues/new" class="text-lg border border-solid border-neutral-700 rounded px-5 py-2 bg-transparent hover:bg-neutral-800">Crear Issue</a> | ||
</section> | ||
|
||
<section class="my-8"> | ||
<h2 class="text-xl my-4">Colaboradores</h2> | ||
<p class="text-base mb-4">¡Gracias a todos los contribuyentes!.</p> | ||
|
||
<a href="https://github.com/doneber/linkhub/graphs/contributors"> | ||
<img src="https://contrib.rocks/image?repo=doneber/linkhub" alt="contribuyentes del repo" /> | ||
</a> | ||
</section> | ||
|
||
</Layout> |