Skip to content

Commit

Permalink
feat: ✨ add contributing page
Browse files Browse the repository at this point in the history
  • Loading branch information
doneber committed Mar 11, 2024
1 parent 874493e commit c53fd0a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/Navbar.astro
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>
26 changes: 26 additions & 0 deletions src/pages/contribution.astro
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>

0 comments on commit c53fd0a

Please sign in to comment.