This is a minimal static website scaffold created for a project showcase.
index.html— the single-page sitestyles.css— simple responsive stylesscript.js— tiny interactivity (nav toggle, contact form simulation)package.json— convenience scripts to run a local server
Additional pages added for the IRCS report:
exec.html— Executive Summary (landing)challenge.html— The Challenge & Contextdesign.html— Design & Selectiondetailed.html— Detailed Design & Proofimplement.html— Implementation & Sustainabilityannex.html— Technical Annex
You can open index.html directly in a browser, or use the included npm script to serve it:
npm install -g http-server; npm startOr (without installing globally):
npx http-server -c-1 -p 8080Open http://localhost:8080 in your browser.
Note: The site is a static HTML scaffold with placeholders for images and figures (system diagram, prototype proof, financial charts, SDG icons). Replace the placeholder blocks with final assets when ready.
- Add your real project cards and links.
- Connect the contact form to an email service or backend.
- Add a custom domain and CI deploy (GitHub Pages, Netlify, Vercel).