This repository contains the source code for my personal resume website, built with Nuxt 3 and Tailwind CSS. The design is intentionally minimalist, drawing inspiration from a "Digital Brutalism" or "Berkshire Hathaway" aesthetic, emphasizing typography and content over elaborate styling.
All content is dynamically rendered from a single source of truth: /src/data/resume.json.
- Minimalism: Strictly black text on a white background. No colors, no images, no distractions.
- Typography-Driven: A strong hierarchy is established using a high-contrast pairing of a serif font for headings (
EB Garamond) and a monospace font for body copy (IBM Plex Mono). - Content-Focused: The layout is a simple, single-column design to ensure the focus remains on the resume data itself.
- Framework: Nuxt 3 (Static Site Generation)
- Styling: Tailwind CSS
- Deployment: Statically hosted on Netlify/Vercel/GitHub Pages.
-
Clone the repository:
git clone https://github.com/huntercox/huntercox.dev.git cd huntercox.dev -
Install dependencies:
npm install
To start the local development server with hot-reloading:
npm run devThe application will be available at http://localhost:3000.
To generate the static site for deployment:
npm run generateThis command will create a dist/ directory containing the final, production-ready static files that can be hosted on any static hosting provider.