Skip to content

Commit a6c682e

Browse files
committed
Refactor: Merge about+organization and flatten single-page directories
- Merge about and organization into single organization.html - Add about.html redirect to maintain existing links - Flatten directories for single pages using Jekyll permalink: * /tos/index.html → tos.html (permalink: /tos/) * /privacy/index.html → privacy.html (permalink: /privacy/) * /legal/index.html → legal.html (permalink: /legal/) * /profile/index.html → profile.html (permalink: /profile/) * /dashboard/index.html → dashboard.html (permalink: /dashboard/) - Remove unnecessary directory nesting - Improve project structure and maintainability - URLs remain unchanged thanks to Jekyll permalink field
1 parent 48f08e2 commit a6c682e

File tree

8 files changed

+65
-133
lines changed

8 files changed

+65
-133
lines changed

about.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
layout: default
3+
title: "Acerca de"
4+
permalink: /about/
5+
redirect_to: /organization/
6+
---
7+
8+
<script>
9+
window.location.replace("/organization/");
10+
</script>
11+
12+
<div class="max-w-4xl mx-auto px-8 py-16 text-center">
13+
<h1 class="text-4xl font-bold text-stone-900 mb-6">Redirigiendo...</h1>
14+
<p class="text-xl text-gray-700">
15+
Si no eres redirigido automáticamente, <a href="/organization/" class="text-orange-600 hover:underline">haz clic aquí</a>.
16+
</p>
17+
</div>

about/index.html

Lines changed: 0 additions & 132 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
layout: default
33
navigation: portal.html
44
title: "Dashboard"
5+
permalink: /dashboard/
56
---
67

78
<div class="bg-gradient-to-r from-stone-800 to-stone-900 text-white py-12 sm:py-16 lg:py-20 px-4 sm:px-6 lg:px-8">

legal/index.html renamed to legal.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
layout: default
33
navigation: portal.html
44
title: "Legal Information"
5+
permalink: /legal/
56
---
67

78
<div class="bg-gradient-to-r from-stone-800 to-stone-900 text-white py-12 sm:py-16 lg:py-20 px-4 sm:px-6 lg:px-8">
Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
layout: default
33
navigation: portal.html
4-
title: "Organization"
4+
title: "Organización"
5+
permalink: /organization/
56
---
67

78
<div class="bg-gradient-to-r from-stone-800 to-stone-900 text-white py-12 sm:py-16 lg:py-20 px-4 sm:px-6 lg:px-8">
@@ -83,6 +84,47 @@ <h2 class="text-2xl sm:text-3xl lg:text-4xl font-bold mb-6 sm:mb-8 text-stone-80
8384
</div>
8485
</div>
8586

87+
<div class="mb-16">
88+
<h2 class="text-4xl font-bold text-stone-800 mb-12 text-center">Nuestros Servicios</h2>
89+
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
90+
<a href="/development" class="block bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-all border-2 border-transparent hover:border-orange-500">
91+
<div class="text-4xl mb-3">💻</div>
92+
<h3 class="text-xl font-bold text-stone-800 mb-2">Desarrollo</h3>
93+
<p class="text-gray-600">Ingeniería de software y desarrollo de soluciones empresariales</p>
94+
</a>
95+
96+
<a href="/crowdfunding" class="block bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-all border-2 border-transparent hover:border-orange-500">
97+
<div class="text-4xl mb-3">💰</div>
98+
<h3 class="text-xl font-bold text-stone-800 mb-2">Crowdfunding</h3>
99+
<p class="text-gray-600">Financiamiento colaborativo para proyectos tecnológicos</p>
100+
</a>
101+
102+
<a href="/coworking" class="block bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-all border-2 border-transparent hover:border-orange-500">
103+
<div class="text-4xl mb-3">🏢</div>
104+
<h3 class="text-xl font-bold text-stone-800 mb-2">Coworking</h3>
105+
<p class="text-gray-600">Espacios de trabajo colaborativo para innovadores</p>
106+
</a>
107+
108+
<a href="/freelancers" class="block bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-all border-2 border-transparent hover:border-orange-500">
109+
<div class="text-4xl mb-3">👔</div>
110+
<h3 class="text-xl font-bold text-stone-800 mb-2">Freelancers</h3>
111+
<p class="text-gray-600">Red de profesionales independientes y proyectos</p>
112+
</a>
113+
114+
<a href="/learning" class="block bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-all border-2 border-transparent hover:border-orange-500">
115+
<div class="text-4xl mb-3">🎓</div>
116+
<h3 class="text-xl font-bold text-stone-800 mb-2">Aprendizaje</h3>
117+
<p class="text-gray-600">Academia y recursos educativos tecnológicos</p>
118+
</a>
119+
120+
<a href="/community" class="block bg-white p-6 rounded-lg shadow-md hover:shadow-xl transition-all border-2 border-transparent hover:border-orange-500">
121+
<div class="text-4xl mb-3">🌟</div>
122+
<h3 class="text-xl font-bold text-stone-800 mb-2">Comunidad</h3>
123+
<p class="text-gray-600">Ecosistema de colaboración y desarrollo open source</p>
124+
</a>
125+
</div>
126+
</div>
127+
86128
<div class="mb-16">
87129
<h2 class="text-2xl sm:text-3xl lg:text-4xl font-bold mb-6 sm:mb-8 text-stone-800 text-center">Estructura General de Coderic</h2>
88130
<p class="text-base sm:text-lg text-gray-700 text-center max-w-3xl mx-auto mb-8 sm:mb-12 px-4">
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
layout: default
33
navigation: portal.html
44
title: "Privacy Policy"
5+
permalink: /privacy/
56
---
67

78
<div class="bg-gradient-to-r from-stone-800 to-stone-900 text-white py-12 sm:py-16 lg:py-20 px-4 sm:px-6 lg:px-8">
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
layout: default
33
navigation: portal.html
44
title: "Profile"
5+
permalink: /profile/
56
---
67

78
<div class="bg-gradient-to-r from-stone-800 to-stone-900 text-white py-12 sm:py-16 lg:py-20 px-4 sm:px-6 lg:px-8">

tos/index.html renamed to tos.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
layout: default
33
navigation: portal.html
44
title: "Terms and Conditions"
5+
permalink: /tos/
56
---
67

78
<div class="bg-gradient-to-r from-stone-800 to-stone-900 text-white py-12 sm:py-16 lg:py-20 px-4 sm:px-6 lg:px-8">

0 commit comments

Comments
 (0)