-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
616 lines (600 loc) · 23.4 KB
/
Copy pathproject.html
File metadata and controls
616 lines (600 loc) · 23.4 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Franco Aguilar-Hernandez | Full-Stack Developer</title>
<!-- Bootstrap -->
<link
href="src/bootstrap-5.3.8-dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<!-- Bootstrap Icons -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css"
/>
<link href="src/css/styles.css" rel="stylesheet" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Manrope:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-custom fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">FAHR</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
style="border: 2px solid var(--accent-primary)"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-end"
id="navbarNav"
>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#experience">Experience</a>
</li> -->
<li class="nav-item">
<a class="nav-link" href="project.html">Projects</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li> -->
<li class="nav-item">
<a class="nav-link btn-resume" href="assets/files/FullStack Resume_2025.pdf" target="_blank">Resume</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<!-- <section id="home" class="hero-section">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12">
<div class="hero-content">
<h1 class="hero-title">Franco<br />Aguilar-Hernandez</h1>
<p class="hero-subtitle">
Building impactful digital solutions that put people first.
</p>
<p class="hero-description">
Combining technical expertise in C#, ASP.NET Core, Entity
Framework, and JavaScript with a human-centered approach to
software development.
</p>
<div class="hero-buttons">
<a href="#projects" class="btn-custom-primary">View My Work</a>
<a href="#contact" class="btn-custom-secondary">Get In Touch</a>
</div>
<div class="social-links">
<a
href="mailto:fhernandez@icstars.org"
class="social-link"
aria-label="Email"
>
<i class="bi bi-envelope-fill"></i>
</a>
<a
href="https://www.linkedin.com/in/franco-aguilar-hernandez"
target="_blank"
class="social-link"
aria-label="LinkedIn"
>
<i class="bi bi-linkedin"></i>
</a>
<a
href="https://github.com/fahr25"
target="_blank"
class="social-link"
aria-label="GitHub"
>
<i class="bi bi-github"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- About Section -->
<!-- <section id="about" class="about-section section-padding">
<div class="container">
<div class="section-header">
<span class="section-label">Get to Know Me</span>
<h2 class="section-title">About Me</h2>
</div>
<div class="row justify-content-center mb-4">
<div class="col-lg-4 text-center">
<img
src="assets/images/headshots/_EFC4074-min.jpg"
class="img-fluid rounded-5 shadow"
alt="Franco Aguilar-Hernandez"
/>
</div>
</div>
<div class="row">
<div class="col-lg-8 mx-auto">
<div class="about-content">
<h3>A Little About <em>Me</em></h3>
<p>
I'm Franco, a full-stack software engineer and community builder
driven by a simple belief: technology should serve people, not
the other way around. I believe technology should serve
humanity—not extract from it. That belief shapes every line of
code I write and every project I take on.
</p>
<p>
Currently, I'm completing the i.c.stars Technology, Business &
Leadership Program in Kansas City, where I'm combining hands-on
software development with leadership training and real-world
client work. My capstone project with Birthday Connections—a
non-profit serving underserved children—lets me do what I love
most: building solutions that directly improve people's lives.
</p>
<p>
I work primarily with C#, ASP.NET Core, and JavaScript, creating
secure, scalable web applications that prioritize the user
experience. Whether I'm implementing real-time features with
SignalR or designing intuitive interfaces with Bootstrap, I
approach every project with both technical rigor and genuine
empathy for the people who'll use what I build.
</p>
<p>
Before transitioning into tech, I spent years as a child
caregiver and CNA developing patience, communication skills, and
a deep understanding of what it means to truly serve others.
That experience shapes how I write code today—I'm not just
building features, I'm building trust.
</p>
<p>
I'm bilingual in English and Spanish, passionate about urban
agriculture through my volunteer work with Urban Station KCK
Community Garden, and always looking to collaborate with
organizations that value sustainable human growth and
environmental responsibility.
</p> -->
<!-- <p>
Today, I combine my technical expertise with my commitment to
community, creating solutions that empower individuals and local
businesses to thrive. Whether it's building secure web
applications or mentoring the next generation of developers, I'm
dedicated to using technology as a force for good.
</p> -->
<!-- </div>
</div>
</div> -->
<!-- <div class="row mt-5">
<div class="col-md-4">
<div class="value-item">
<h4>🎯 People-First Development</h4>
<p>
Every line of code I write is guided by a simple question: How
does this serve people better?
</p>
</div>
</div>
<div class="col-md-4">
<div class="value-item">
<h4>🚀 Community Impact</h4>
<p>
From Birthday Connections to Urban Station KCK, I build
technology that strengthens communities.
</p>
</div>
</div>
<div class="col-md-4">
<div class="value-item">
<h4>💡 Continuous Growth</h4>
<p>
Technology evolves, and so do I. I'm committed to lifelong
learning and skill development.
</p>
</div>
</div>
</div>
</div>
</section> -->
<!-- Skills Section -->
<!-- <section id="skills" class="skills-section section-padding">
<div class="container">
<div class="section-header">
<span class="section-label">Technical Expertise</span>
<h2 class="section-title">Skills & Technologies</h2>
<p class="section-description">
A comprehensive toolkit built through hands-on projects and
continuous learning
</p>
</div>
<div class="row">
<div class="col-lg-6">
<div class="skill-category">
<h4><i class="bi bi-code-slash me-2"></i>Backend Development</h4>
<div class="skills-list">
<span class="skill-tag">C#</span>
<span class="skill-tag">ASP.NET Core 8.0</span>
<span class="skill-tag">Entity Framework Core</span>
<span class="skill-tag">ASP.NET Core Identity</span>
<span class="skill-tag">RESTful APIs</span>
<span class="skill-tag">Session Management</span>
<span class="skill-tag">SignalR</span>
<span class="skill-tag">Python</span>
<span class="skill-tag">Django</span>
<span class="skill-tag">Java</span>
<span class="skill-tag">SpringBoot</span>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="skill-category">
<h4>
<i class="bi bi-palette-fill me-2"></i>Frontend Development
</h4>
<div class="skills-list">
<span class="skill-tag">HTML5</span>
<span class="skill-tag">CSS3</span>
<span class="skill-tag">JavaScript</span>
<span class="skill-tag">Bootstrap 5</span>
<span class="skill-tag">Tailwind CSS</span>
<span class="skill-tag">Blazor Server</span>
<span class="skill-tag">React</span>
<span class="skill-tag">Responsive Design</span>
<span class="skill-tag">UI/UX Principles</span>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="skill-category">
<h4><i class="bi bi-database-fill me-2"></i>Databases & Cloud</h4>
<div class="skills-list">
<span class="skill-tag">Azure SQL Database</span>
<span class="skill-tag">MySQL</span>
<span class="skill-tag">SQL Server</span>
<span class="skill-tag">Database Design</span>
<span class="skill-tag">Azure Cloud</span>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="skill-category">
<h4><i class="bi bi-tools me-2"></i>Tools & Practices</h4>
<div class="skills-list">
<span class="skill-tag">Git & GitHub</span>
<span class="skill-tag">Visual Studio</span>
<span class="skill-tag">VS Code</span>
<span class="skill-tag">TDD (xUnit)</span>
<span class="skill-tag">Agile/Kanban</span>
<span class="skill-tag">Docker</span>
<span class="skill-tag">Linux CLI</span>
<span class="skill-tag">Microsoft 365</span>
</div>
</div>
</div>
</div>
</div> -->
<!-- </section> -->
<!-- Experience Section -->
<!-- <section id="experience" class="experience-section section-padding">
<div class="container">
<div class="section-header">
<span class="section-label">Career Journey</span>
<h2 class="section-title">Work Experience</h2>
</div>
<div class="row">
<div class="col-lg-10 mx-auto">
<div class="timeline">
<div class="timeline-item">
<div class="timeline-card">
<div class="timeline-date">
September 2024 – December 2024
</div>
<h3 class="timeline-title">
Technology, Leadership & Business Intern
</h3>
<div class="timeline-company">
i.c.stars | Kansas City, MO
</div>
<ul class="mb-0">
<li>
Completed 120 hours of intensive training blending
technology, leadership development, and business strategy
</li>
<li>
Led team-based web application development for Birthday
Connections using ASP.NET Core, Entity Framework Core, and
Azure SQL
</li>
<li>
Designed and implemented secure authentication and
role-based access using ASP.NET Core Identity
</li>
<li>
Built responsive UI components with HTML/CSS/JavaScript
and Bootstrap framework
</li>
<li>
Served as Agile facilitator, leading daily stand-ups and
coordinating sprint activities
</li>
<li>
Achieved 75% productivity increase and 50% complexity
reduction for client operations
</li>
</ul>
</div>
</div>
<div class="timeline-item">
<div class="timeline-card">
<div class="timeline-date">April 2021 – August 2024</div>
<h3 class="timeline-title">Child Caregiver</h3>
<div class="timeline-company">
Self-Employed | Kansas City, MO
</div>
<ul class="mb-0">
<li>
Developed structured educational routines improving
academic performance and well-being
</li>
<li>
Managed daily schedules and logistics, demonstrating
adaptability and organization
</li>
<li>
Cultivated trust and reliability through consistent,
client-focused service
</li>
<li>
Applied problem-solving and communication skills in
real-world situations
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- Stats Section -->
<!-- <section class="stats-section">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="stat-card">
<div class="stat-number">75%</div>
<div class="stat-label">Productivity Increase</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="stat-card">
<div class="stat-number">50%</div>
<div class="stat-label">Complexity Reduction</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="stat-card">
<div class="stat-number">99</div>
<div class="stat-label">Test Cases Written</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="stat-card">
<div class="stat-number">100%</div>
<div class="stat-label">Passion & Dedication</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- Projects Section -->
<section id="projects" class="projects-section section-padding">
<div class="container">
<div class="section-header">
<span class="section-label">Featured Work</span>
<h2 class="section-title">Projects</h2>
<p class="section-description">
Real-world applications built to solve meaningful problems
</p>
</div>
<div class="row">
<div class="col-lg-6">
<div class="project-card">
<div class="project-image">
<!-- <i class="bi bi-gift-fill"></i> -->
<img src="assets/images/admindashboard-ui/birthday-market.png">
</div>
<div class="project-content">
<div class="project-label">Featured Project • Capstone</div>
<h3 class="project-title">
<a href="http://localhost:5245/">CelebrateMe Web Application</a>
</h3>
<p>
A scalable e-commerce platform serving low-income families in
Kansas City. Built with ASP.NET Core 8.0 and Azure SQL,
featuring real-time updates, secure authentication, and an
intuitive shopping experience that increased admin
productivity by 75% and reduced user complexity by 50%.
</p>
<div class="project-tech">
<span class="tech-badge">ASP.NET Core</span>
<span class="tech-badge">Entity Framework</span>
<span class="tech-badge">Azure SQL</span>
<span class="tech-badge">SignalR</span>
<span class="tech-badge">Bootstrap</span>
<span class="tech-badge">xUnit</span>
</div>
</div>
</div>
</div>
<!-- <div class="col-lg-6">
<div class="project-card">
<div class="project-image">
<i class="bi bi-code-square"></i>
</div>
<div class="project-content">
<div class="project-label">Full-Stack Development</div>
<h3 class="project-title">LaunchCode Projects</h3>
<p>
Series of full-stack web applications developed during
LaunchCode's intensive bootcamp program. Demonstrated
proficiency in JavaScript, React, Java, and SpringBoot through
hands-on project-based learning and Test-Driven Development
practices.
</p>
<div class="project-tech">
<span class="tech-badge">JavaScript</span>
<span class="tech-badge">React</span>
<span class="tech-badge">Java</span>
<span class="tech-badge">SpringBoot</span>
<span class="tech-badge">MySQL</span>
</div>
</div>
</div>
</div> -->
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="contact-section">
<div class="container">
<div class="section-header">
<span class="section-label">Let's Connect</span>
<h2 class="section-title">Get In Touch</h2>
<p class="section-description">
I'm actively seeking full-stack developer opportunities with
companies that value people-first technology. Let's build something
great together!
</p>
</div>
<div class="row">
<div class="col-md-4">
<div class="contact-card">
<div class="contact-icon">
<i class="bi bi-envelope-fill"></i>
</div>
<h4>Email</h4>
<a href="mailto:fhernandez@icstars.org" class="contact-link">
fhernandez@icstars.org
</a>
</div>
</div>
<div class="col-md-4">
<div class="contact-card">
<div class="contact-icon">
<i class="bi bi-linkedin"></i>
</div>
<h4>LinkedIn</h4>
<a
href="https://www.linkedin.com/in/franco-aguilar-hernandez"
target="_blank"
class="contact-link"
>
franco-aguilar-hernandez
</a>
</div>
</div>
<div class="col-md-4">
<div class="contact-card">
<div class="contact-icon">
<i class="bi bi-github"></i>
</div>
<h4>GitHub</h4>
<a
href="https://github.com/fahr25"
target="_blank"
class="contact-link"
>
github.com/fahr25
</a>
</div>
</div>
</div>
<div class="row mt-5">
<div class="col-lg-8 mx-auto text-center">
<p
style="
font-size: 1.125rem;
color: var(--text-secondary);
margin-bottom: 2rem;
"
>
<i
class="bi bi-geo-alt-fill"
style="color: var(--accent-primary)"
></i>
Kansas City, KS | Open to Remote & Relocation
</p>
<p style="font-size: 1rem; color: var(--text-secondary)">
<i
class="bi bi-translate"
style="color: var(--accent-primary)"
></i>
Bilingual: English & Spanish
</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-social">
<a
href="mailto:fhernandez@icstars.org"
class="social-link"
aria-label="Email"
>
<i class="bi bi-envelope-fill"></i>
</a>
<a
href="https://www.linkedin.com/in/franco-aguilar-hernandez"
target="_blank"
class="social-link"
aria-label="LinkedIn"
>
<i class="bi bi-linkedin"></i>
</a>
<a
href="https://github.com/fahr25"
target="_blank"
class="social-link"
aria-label="GitHub"
>
<i class="bi bi-github"></i>
</a>
</div>
<p class="footer-text">
© 2025 Franco Aguilar-Hernandez. Built with passion and purpose.
</p>
</div>
</div>
</footer>
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom JavaScript -->
<script href="src/js/script.js"></script>
</body>
</html>