This Website
liveA fast, low-maintenance personal portfolio — static Next.js on Cloudflare Pages, with a real contact form backed by a Cloudflare Worker.
You're looking at it. Static Next.js (App Router), exported at build time and served from Cloudflare's edge — no server process, no database, nothing to patch or keep running.
Architecture
Browser
→ Cloudflare Pages
→ Static Next.js frontend
Contact form:
Browser
→ Cloudflare Worker
→ Resend
→ hello@aldhairmartinez.com
The only dynamic piece is the contact form: a small Cloudflare Worker holds the Resend API key as an encrypted secret (never in code, never in the browser), sends the email, and sets Reply-To to whatever the visitor typed so replying goes straight to them. Everything else — the pages, the content, the resume downloads — is static.
Why build it this way
This is the real, long-term production site, not a temporary placeholder — so it's optimized for reliability and low maintenance over technical ambition. There's a separate, deliberately more elaborate project — the engineering lab — for the technical learning and experimentation that used to live in this same codebase.