Static website for studiojoe.dev. Personal site covering code, camera, and everything in between.
index.html Homepage
resume.html Resume page
public/ Static assets (SVGs, images)
vercel.json Vercel deployment config
No build step. Just open index.html directly in a browser:
open index.html
Or serve with any static file server if you need relative paths to resolve correctly:
npx serve .
Deployed on Vercel. vercel.json sets outputDirectory to . and framework to null, so Vercel serves the repo root as a plain static site with no build command.