sddbook.com
The SDD Book site at sddbook.com promotes “Spec Driven Development — AI Native Software Engineering”. It is a single-page static HTML site with no build step and no JavaScript framework.
| Technology | Role |
|---|---|
| HTML5 | Page structure |
| CSS3 (custom properties) | Styling |
| Google Fonts | Typography (Alfa Slab One, Inter, IBM Plex Mono) |
| nginx | Static file serving |
Content
Section titled “Content”A single index.html presenting the book with a light-themed hero section, content summary, and call-to-action.
sddbook-com/├── public/│ └── index.html├── Dockerfile├── nginx.conf├── docker-compose.yml└── package.jsonStyling
Section titled “Styling”All styling is inline within index.html using CSS custom properties:
| Variable | Value | Usage |
|---|---|---|
--red | Red | Primary accent |
--black | Near-black | Text |
--grey-bg | Light grey | Page background |
--off-white | Off-white | Card backgrounds |
--slab | Alfa Slab One | Display headings |
--sans | Inter | Body text |
--mono | IBM Plex Mono | Code and technical text |
The design uses a light colour scheme with a bold slab-serif display font for an editorial book-promotion aesthetic.
Build and Serve
Section titled “Build and Serve”Single-stage Dockerfile:
- nginx 1.28.2 Alpine copies
public/directly into the web root sedreplaces{{COMMIT_SHA}}inindex.htmlat Docker build time- Runs as non-root on port 8080