African AI policy review capstone project
# When AI Makes the Decision — African A.I. Policy Review
A one-page editorial/documentary website built exactly to the supplied design
specification (`When_AI_Makes_the_Decision_EXACT_Website_Design_Spec.docx`).
It's plain **HTML + CSS + JavaScript** — no framework, no build step, no
dependencies to install. That's the easiest possible thing to host, and it's
a perfect fit for Vercel's zero-config static deploy.
## What's in this folder
```
index.html All 13 sections + header, in semantic HTML
styles.css Every design token (colors, type, spacing) and all layout/responsive rules
script.js Scroll progress bar, header shrink, and scroll-triggered reveal animations
avatar.png Your supplied humanoid artwork (used as-is, uncropped, in the hero)
logo.png Your supplied African A.I. Policy Review logo (used as-is, in the header)
README.md This file
```
No `package.json`, no `node_modules`, nothing to build. Vercel just serves
these five files.
## Preview it locally before deploying (optional)
Any static file server works. From inside this folder:
```bash
python3 -m http.server 8000
# then open
localhost in your browser
```
or, if you have Node:
```bash
npx serve .
```
## Deploy to Vercel — pick whichever is easiest for you
### Option A: Drag-and-drop (no account setup beyond signing in, no CLI)
1. Go to
vercel.com
2. Sign in (GitHub, GitLab, or email).
3. Drag this whole folder onto the upload area, or click to browse and select it.
4. Vercel detects it as a static site automatically — no settings to change.
5. Click **Deploy**. You'll have a live `*.vercel.app` URL in under a minute.
### Option B: Vercel CLI (fastest if you're comfortable in a terminal)
```bash
npm install -g vercel # one-time install
cd path/to/this-folder
vercel # follow the prompts, accept the defaults
vercel --prod # promote it to your production URL
```
When it asks about a framework, accept the default …