Initial portfolio scaffold: Hono + HTMX + TailwindCSS

This commit is contained in:
Sudeste
2026-04-12 19:37:06 -03:00
commit 9ec85f92cf
14 changed files with 386 additions and 0 deletions

48
components/Experience.tsx Normal file
View File

@@ -0,0 +1,48 @@
export const Experience = () => (
<section id="experience" class="scroll-mt-24">
<h2 class="text-3xl font-bold mb-4 text-dracula-purple">Experience</h2>
<div class="space-y-6">
<div class="bg-dracula-selection p-6 rounded-lg">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold text-dracula-cyan">API Testing Automation Team Lead</h3>
<span class="text-dracula-comment text-sm">2021 - Present</span>
</div>
<p class="text-dracula-purple mb-3">Intermex Wire Transfer, LLC</p>
<ul class="list-disc list-inside space-y-2">
<li>Lead team of 3 automation engineers in API testing initiatives</li>
<li>Develop k6 performance testing framework with JavaScript abstraction</li>
<li>Achieved 80% automation coverage across 50+ API endpoints</li>
<li>Onboard development teams to Postman + Azure Pipelines automation methodology</li>
<li>Team development: Training coworkers in Postman usage and basic JavaScript</li>
</ul>
</div>
<div class="bg-dracula-selection p-6 rounded-lg">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold text-dracula-cyan">QA Performance Engineer</h3>
<span class="text-dracula-comment text-sm">2021 - 2025</span>
</div>
<p class="text-dracula-purple mb-3">Freelance & Contract Roles</p>
<ul class="list-disc list-inside space-y-2">
<li>Developed k6 performance testing framework from scratch</li>
<li>Created JavaScript abstraction layer for API synthetic testing</li>
<li>Designed synthetic test methodology for production environments</li>
<li>Consulting for small businesses on self-hosting infrastructure</li>
<li>Office PC support: File servers, printer servers, LAN networks, VPN access</li>
</ul>
</div>
<div class="bg-dracula-selection p-6 rounded-lg">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-bold text-dracula-cyan">Technical Services Provider</h3>
<span class="text-dracula-comment text-sm">2006 - Present</span>
</div>
<p class="text-dracula-purple mb-3">Independent Contractor</p>
<ul class="list-disc list-inside space-y-2">
<li>Computer repair and maintenance services (18+ years)</li>
<li>System optimization: Backup, format, Windows reinstallation, driver updates</li>
<li>Hardware diagnostics and component replacement</li>
<li>Self-taught knowledge accumulated through 20 years of practical experience</li>
</ul>
</div>
</div>
</section>
)