Skip to content

Commit 7dd94bb

Browse files
authored
Footer rebasement and best practices (#30)
* fix: Add link to GitHub 'Ecuador in Tech' organization in footer * feat: Add 'Voluntariado' section to footer and related section id for navigation on Home
1 parent 6e81c41 commit 7dd94bb

File tree

2 files changed

+26
-36
lines changed

2 files changed

+26
-36
lines changed

src/components/AboutUs.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import heroImage from "../assets/hacktoberfest.jpg";
33
---
44

5-
<section class="py-16 bg-gray-50">
5+
<section id="about-us" class="py-16 bg-gray-50">
66
<div class="container mx-auto px-4">
77
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
88
<div>

src/components/Footer.astro

Lines changed: 25 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -2,42 +2,32 @@
22
33
---
44
<footer class="bg-gray-800 text-white py-8">
5-
<div class="container mx-auto px-4">
6-
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
7-
<div>
8-
<h3 class="text-xl font-bold mb-4">Ecuador In Tech</h3>
9-
<p class="text-gray-300">
10-
Conectando comunidades, empoderando personas.
11-
</p>
12-
</div>
13-
<div>
14-
<h3 class="text-xl font-bold mb-4">Enlaces rápidos</h3>
15-
<ul class="space-y-2">
16-
<li><a href="/" class="text-gray-300 hover:text-white">Inicio</a></li>
17-
<li>
18-
<a href="/communities" class="text-gray-300 hover:text-white"
19-
>Comunidades</a>
20-
</li>
21-
<li>
22-
<a href="/events" class="text-gray-300 hover:text-white">Eventos</a>
23-
</li>
24-
<li>
25-
<a href="/rss.xml" class="text-gray-300 hover:text-white">
26-
Suscríbete a nuestro canal RSS</a>
27-
</li>
28-
</ul>
29-
</div>
30-
<div>
31-
<h3 class="text-xl font-bold mb-4">Conecta con nosotros</h3>
32-
<div class="flex space-x-4">
33-
<a href="#" class="text-gray-300 hover:text-white">GitHub</a>
5+
<div class="container mx-auto px-4">
6+
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
7+
<div>
8+
<h3 class="text-xl font-bold mb-4">Ecuador In Tech</h3>
9+
<p class="text-gray-300">Conectando comunidades, empoderando personas.</p>
10+
</div>
11+
<div>
12+
<h3 class="text-xl font-bold mb-4">Enlaces rápidos</h3>
13+
<ul class="space-y-2">
14+
<li><a href="/" class="text-gray-300 hover:text-white">Inicio</a></li>
15+
<li><a href="/communities" class="text-gray-300 hover:text-white">Comunidades</a></li>
16+
<li><a href="/events" class="text-gray-300 hover:text-white">Eventos</a></li>
17+
<li><a href="/#about-us" class="text-gray-300 hover:text-white">Voluntariado</a></li>
18+
<li><a href="/rss.xml" class="text-gray-300 hover:text-white"> Suscríbete a nuestro canal RSS</a></li>
19+
</ul>
20+
</div>
21+
<div>
22+
<h3 class="text-xl font-bold mb-4">Conecta con nosotros</h3>
23+
<div class="flex space-x-4">
24+
<a href="https://github.com/Ecuador-In-Tech" class="text-gray-300 hover:text-white">GitHub</a>
25+
</div>
3426
</div>
3527
</div>
28+
<div class="mt-8 pt-8 border-t border-gray-700 text-center">
29+
<p class="text-gray-300">&copy; 2024 Ecuador In Tech. Todos los derechos reservados.</p>
30+
</div>
3631
</div>
37-
<div class="mt-8 pt-8 border-t border-gray-700 text-center">
38-
<p class="text-gray-300">
39-
&copy; 2024 Ecuador In Tech. Todos los derechos reservados.
40-
</p>
41-
</div>
42-
</div>
4332
</footer>
33+

0 commit comments

Comments
 (0)