Building My Dev Portfolio with Eleventy

How I set up a fast, static blog and portfolio using Eleventy and deployed it on Vercel.

This is the first post on my new blog. I built this site using Eleventy — a simple, fast static site generator — and deployed it on Vercel.

Why Eleventy?

A few reasons I picked Eleventy for this project:

The Stack

Here's what powers this site:

Writing a New Post

Creating a new blog post is straightforward. Add a Markdown file to src/posts/ with front matter:

---
title: "Your Post Title"
description: "A short summary of the post."
date: 2026-03-08
---

Then write your content in Markdown below the front matter. Eleventy picks it up automatically — no config changes needed.

What's Next

I'm planning to add:

Stay tuned for more updates as I build this out.