-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
75 lines (68 loc) · 3.32 KB
/
Copy pathdata.js
File metadata and controls
75 lines (68 loc) · 3.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
const PORTFOLIO = {
name: "Isaac Muñoz",
alias: "rgkue",
tagline: "Cybersecurity Student - ¡Happy hacking!",
photo: "assets/photo.jpg",
cv: "assets/IsaacMunoz_CV.pdf",
icon: "assets/icon.png",
social: [
{ label: "GitHub", url: "https://github.com/rgkue", icon: "github" },
{ label: "LinkedIn", url: "https://www.linkedin.com/in/isaacmunozp", icon: "linkedin" },
{ label: "Instagram", url: "https://instagram.com/rgkue", icon: "instagram" },
],
// ─── EXPERIENCIA PROFESIONAL ──────────────────────────────
experience: [
{
role: "Soporte Técnico de TI",
company: "Innovasoft LATAM", companyUrl: "https://innovasoftlatam.com/",
period: "2025 – 2026",
description: "Resolución de incidencias nivel 1 y 2 en redes, sistemas y hardware en entornos empresariales. Instalación y configuración de servidores y redes LAN. Soporte a usuarios en problemas de conectividad, impresoras y sistemas.",
current: false,
},
{
role: "Práctica Profesional - Asesor de Ventas",
company: "Rodelag S.A.", companyUrl: "https://www.rodelag.com/",
period: "2024",
description: "Atención al cliente en área tecnológica como prácticante. Apoyo en inventario y soporte básico en equipos.",
current: false,
},
{
role: "Ayudante Académico Estudiantil - Auxiliar de Soporte Técnico",
company: "Universidad Tecnológica de Panamá", companyUrl: "https://www.utp.ac.pa/",
period: "2026 - Actual",
description: "Ayudante académico en área de soporte técnico de la Universidad Tecnológica de Panamá. Ayuda a profesores y estudiantes con consultas generales de soporte técnico.",
current: true,
},
],
// ─── HIGHLIGHTS (sección habilidades en index) ───────────
// skillHighlights → columna izquierda (10 items planos)
// certHighlights → columna derecha (10 items, url opcional)
skillHighlights: [
{ label: "Linux - Ubuntu, Kali, Fedora" },
{ label: "Windows 10/11 & Server, Windows Dr. Lite" },
{ label: "Instalación y configuración de software" },
{ label: "Configuración de redes LAN" },
{ label: "Troubleshooting de red" },
{ label: "Wireshark & Analisis de tráfico" },
{ label: "Nmap & herramientas de seguridad ofensiva" },
{ label: "Python & Bash Scripting" },
{ label: "SQL · XAMPP · LAMP" },
{ label: "Resolución de problemas & Resiliencia" },
],
certHighlights: [
{ label: "CCNA: Introduction to Networks - Academia de Cisco de la UTP" },
{ label: "Computer Hardware Basics - Cisco Networking Academy" },
{ label: "Ethical Hacker - Cisco Networking Academy" },
{ label: "Linux Essentials: Network Development Group" },
{ label: "Networking Basics - Cisco Networking Academy" },
{ label: "Introduction to Cybersecurity - Cisco Networking Academy" },
{ label: "AWS Foundations - AWS Academy" },
{ label: "AWS Security - AWS Academy" },
{ label: "Junior Cybersecurity Analyst Career Path" },
{ label: "Cybersecurity Essentials - Cisco Networking Academy" },
],
// ─── CONTACTO (footer) ────────────────────────────────────
email: [
"isaac.munoz1@utp.ac.pa",
],
};