- Portfolio – ccd97.github.io
- Résumé – ccd97.github.io/resume.html
Built with Vite, React, TypeScript, Tailwind CSS, and shadcn/ui.
npm install
npm run dev # start dev server (http://localhost:5173)
npm run build # production build → dist/
npm run preview # serve the production build locallysrc/
├── components/
│ ├── portfolio/ # portfolio page components
│ ├── resume/ # resume page components
│ └── ui/ # shadcn/ui primitives
├── data/ # fallback JSON used when remote APIs are unreachable
├── lib/ # utilities, fetchers, formatters
├── pages/ # PortfolioPage, ResumePage
├── types/ # shared TypeScript types
├── main.tsx # entry for index.html
├── resume.tsx # entry for resume.html
└── index.css # Tailwind + CSS variables
Deployed automatically to GitHub Pages via .github/workflows/deploy.yml on every push to master.
One-time setup: in the repo's Settings → Pages, set Source to GitHub Actions.