Skip to main content

Managing Projects

Each project is a single Markdown file inside content/projects/. To add a new project, create a new .md file in that directory. To remove one, delete the file.

Frontmatter fields

---
title: My Project
description: A short summary shown on the card.
image: https://example.com/screenshot.jpg # optional
tags:
- React
- TypeScript
date: "2025-06-15"
featured: true # optional — show on home page
order: 1 # optional — sort order (lower = first)
---
FieldRequiredDescription
titleYesProject name, shown on the card and detail page
descriptionYesShort summary (1–2 sentences) for the card view
imageNoCover image URL. Displayed on both the card and detail page
tagsYesArray of technology/skill tags. Rendered as badges
dateYesProject date in YYYY-MM-DD format (used for reference)
featuredNoSet to true to display the project in the "Featured Work" section on the home page
orderNoSort position. Lower numbers appear first. Defaults to 99

Body content

The Markdown body becomes the project detail page — your full case study. Structure it however you like. A common pattern:

## The Challenge

What problem were you solving?

## My Role

What did you do?

## Process

1. **Research** — ...
2. **Design** — ...
3. **Build** — ...

## Results

- **Metric** — improvement
- **Metric** — improvement

Adding a new project

  1. Create a new file in content/projects/, e.g. content/projects/my-new-project.md
  2. Add frontmatter with at least title, description, tags, and date
  3. Write the body content
  4. The project will appear at /projects/my-new-project (the filename minus .md becomes the URL slug)

Set featured: true in the frontmatter. Up to 3 featured projects are shown on the home page in the "Featured Work" section. Use the order field to control which ones appear first.

Full example

---
title: Waypoint Travel App
description: A mobile-first travel planning app for adventure travelers.
image: https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=800&h=400&fit=crop
tags:
- Mobile Design
- UX Research
- Prototyping
- iOS
date: "2025-03-10"
featured: true
order: 2
---

## The Challenge

Existing travel apps focus on mainstream tourism. Waypoint needed
to serve adventure travelers who prefer unique, local experiences.

## Results

- **4.8/5** average usability score
- **92% task completion** rate for core booking flow