Skip to content

Commit 64cd4ba

Browse files
committed
Commit 12, añado el apartado de contactos
1 parent a970609 commit 64cd4ba

4 files changed

Lines changed: 76 additions & 5 deletions

File tree

assets/css/styles.css

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,3 +140,43 @@ p{color:var(--muted); line-height:1.7}
140140
text-align: center;
141141
}
142142

143+
144+
.contact-actions {
145+
display: flex;
146+
flex-wrap: wrap;
147+
gap: 12px;
148+
justify-content: center;
149+
margin: 20px 0;
150+
}
151+
152+
.btn-outline {
153+
padding: 10px 14px;
154+
border-radius: 12px;
155+
border: 1px solid rgba(255,255,255,.3);
156+
color: var(--text);
157+
text-decoration: none;
158+
font-weight: 500;
159+
background: transparent;
160+
}
161+
162+
.btn-outline:hover {
163+
border-color: var(--cyan);
164+
}
165+
166+
.social {
167+
display: flex;
168+
gap: 16px;
169+
justify-content: center;
170+
margin-top: 10px;
171+
}
172+
173+
.social a {
174+
color: var(--muted);
175+
text-decoration: none;
176+
font-size: 14px;
177+
}
178+
179+
.social a:hover {
180+
color: var(--text);
181+
}
182+

assets/i18n/en.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,14 @@
7575
"s3_title": "Technical support & system improvement",
7676
"s3_body": "Incident resolution, diagnostics, documentation and user guidance. Strong ability to detect issues and propose practical, efficient solutions."
7777
},
78+
79+
"contact": {
80+
"title": "Contact",
81+
"subtitle": "Interested in working together or knowing more about what I can bring to your team?",
82+
"cta_button": "Send email",
83+
"linkedin_button": "View LinkedIn"
84+
},
7885

79-
"contact": { "title":"Contact" },
8086
"about": {
8187
"title": "About me",
8288
"body": "I’m a developer trained in DAM with hands-on specialization in Salesforce (APEX 2025). I build clean, fast solutions—from WordPress sites to time-saving automations. I’m seeking my first junior role to deliver real impact while learning fast."

assets/i18n/es.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,14 @@
7575
"s3_title": "Soporte técnico y mejora de sistemas",
7676
"s3_body": "Diagnóstico, resolución de incidencias, documentación y comunicación con usuarios. Capacidad para detectar problemas y proponer soluciones prácticas."
7777
},
78+
79+
"contact": {
80+
"title": "Contacto",
81+
"subtitle": "¿Te interesa que colaboremos o quieres saber más sobre lo que puedo aportar a tu equipo?",
82+
"cta_button": "Enviar correo",
83+
"linkedin_button": "Ver LinkedIn"
84+
},
7885

79-
"contact": { "title":"Contacto" },
8086
"about": {
8187
"title": "Sobre mí",
8288
"body": "Soy desarrollador con formación DAM y especialización práctica en Salesforce (APEX 2025). Me gusta construir soluciones claras y rápidas: desde webs con WordPress hasta automatizaciones que ahorran tiempo. Busco mi primera oportunidad como junior para aportar impacto real mientras sigo aprendiendo."

index.html

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,31 @@ <h2 data-i18n="services.title">Servicios</h2>
5757

5858
<section id="contact" class="section">
5959
<h2 data-i18n="contact.title">Contacto</h2>
60-
<p><a id="contact-email" href="mailto:tuemail@ejemplo.com">tuemail@ejemplo.com</a></p>
60+
<p data-i18n="contact.subtitle">
61+
¿Te interesa que colaboremos o quieres saber más sobre lo que puedo aportar a tu equipo?
62+
</p>
63+
64+
<div class="contact-actions">
65+
<a id="contact-email" class="btn"
66+
href="mailto:sebitaexporu@gmail.com"
67+
data-i18n="contact.cta_button">
68+
Enviar correo
69+
</a>
70+
<a class="btn-outline"
71+
href="https://www.linkedin.com/in/sebastián-expósito-ruiz-a8a24a34a"
72+
target="_blank"
73+
rel="noopener noreferrer"
74+
data-i18n="contact.linkedin_button">
75+
Ver LinkedIn
76+
</a>
77+
</div>
78+
6179
<div class="social">
62-
<a href="https://github.com/tuusuario" aria-label="GitHub">GitHub</a>
63-
<a href="https://www.linkedin.com/in/tu-perfil" aria-label="LinkedIn">LinkedIn</a>
80+
<a href="https://github.com/SebiGitHub" aria-label="GitHub">GitHub</a>
81+
<a href="https://www.linkedin.com/in/sebastián-expósito-ruiz-a8a24a34a" aria-label="LinkedIn">LinkedIn</a>
6482
</div>
6583
</section>
84+
6685
</main>
6786

6887
<footer class="footer">

0 commit comments

Comments
 (0)