My personal site. Built to be fast, accessible, and easy to maintain.
Live at joepetrillo.com.
src/
├── assets/ # fonts, images, favorite covers
├── components/ # Astro components
├── content/ # writing (Markdown/MDX collection)
├── data/ # site config, projects, favorites, links, palettes
├── layouts/ # SiteLayout
├── pages/ # routes (home, writing, projects, books, movies, music, quotes, links)
├── styles/ # global + normalize CSS
└── utils/ # date + url helpers
| Command | Action |
|---|---|
bun install |
Install dependencies |
bun run dev |
Start dev server at localhost:4321 |
bun run build |
Build production site to ./dist/ |
bun run preview |
Preview the production build locally |
bun run check |
Lint and format check (Ultracite) |
bun run fix |
Auto-fix lint and formatting issues |