This repository contains a minimal static website you can host anywhere: GitHub Pages, Netlify, Vercel, an S3 bucket, or any basic web server.
index.html: Landing page with basic sections.assets/style.css: Minimal, responsive styles.assets/script.js: Small enhancements (year + mobile nav).404.html: Not‑found page for nicer errors (useful on GitHub Pages)..nojekyll: Disables Jekyll on GitHub Pages so files are served as‑is.
- Open
index.htmldirectly in a browser, or - Serve locally for cleaner routing:
- Python:
python -m http.server 8080 - Node:
npx serve -l 8080
- Python:
Then visit http://localhost:8080.
- Commit and push the files to your repository's default branch.
- In GitHub: Settings → Pages → Build and deployment → Deploy from a branch.
- Select your default branch and
/ (root)folder → Save. - Wait for deploy; your site will be available at the Pages URL.
Tip: .nojekyll is already included to avoid Jekyll processing.
- Drag and drop the repository folder onto https://app.netlify.com/drop, or connect the repo.
- No build command needed (static site). Publish directory:
/.
- Import the repository at https://vercel.com/new.
- Framework preset: "Other". No build command. Output directory:
/.
- Upload the files as-is to your web root (e.g., Nginx
rootdirectory, S3 static hosting, or Azure Static Web Apps).
- Edit content in
index.html(brand name, sections, email). - Adjust colors/typography in
assets/style.css. - Add pages and link them from the nav; copy
404.htmlif needed.
Questions or want me to set up a specific host for you (Pages/Netlify/Vercel/Nginx)? Let me know and I’ll tailor the config.