01library 02workshop 03skills 04résumé 05about
github linkedin email
← essays & deep dives 6 min left
DEEP DIVE · JUL 09, 2026 · 6 MIN

Rebuilding okasha.me from scratch: Jekyll → Astro

This site started in 2019 as a Jekyll one-pager — hero video, parallax, a timeline, and a whole lot of hardcoded HTML. It served me well for seven years, but it had a structural problem: content lived inside markup. Adding one blog post meant editing a 600-line include file. So nothing ever got added.

The 2026 rebuild inverts that. The site is now an archive-first system:

What the old site taught me

Three lessons made it into this design:

  1. Never couple content to layout. The old experience timeline was unmaintainable precisely because every bullet was hand-placed markup.
  2. Performance is a feature you can lose. At one point the old site shipped a 7.6MB hero video and 62 broken lazyload placeholders to every phone. The new budget: under 500KB before you scroll.
  3. A personal site should be a proof-of-work system, not a brochure. The resume here opens receipts for every claim, and the workshop shows the actual artifacts.

The stack, exactly

Astro 5, plain CSS custom properties (no Tailwind — the token system is ~30 lines), IBM Plex Mono + Space Grotesk, a hand-rolled ⌘K palette, and a GitHub Action that builds and deploys on every push. The full source is on GitHub.

← back to the library #web#astro#meta