Skip to content

aiimmigrants.com

The AI Immigrants site at aiimmigrants.com is a holding page for the “AI Immigrants — The Bloody Algos Are Here” project. It is a single-page static HTML site with no build step and no JavaScript framework.

TechnologyRole
HTML5Page structure
CSS3 (custom properties)Styling
Google FontsTypography (Bebas Neue, Libre Baskerville, DM Sans, IBM Plex Mono)
nginxStatic file serving

A single index.html with a dark-themed hero section presenting the project tagline and coming-soon messaging.

aiimmigrants-com/
├── public/
│ └── index.html
├── Dockerfile
├── nginx.conf
├── docker-compose.yml
└── package.json

All styling is inline within index.html using CSS custom properties:

VariableValueUsage
--blackNear-blackBackground
--creamWarm whiteBody text
--rustRust orangeAccent colour
--steelSteel greySecondary text
--serifLibre BaskervilleBody font
--sansDM SansUI font
--monoIBM Plex MonoCode and technical text

The design uses a dark colour scheme with serif typography for an editorial aesthetic.

Single-stage Dockerfile:

  1. nginx 1.28.2 Alpine copies public/ directly into the web root
  2. sed replaces {{COMMIT_SHA}} in index.html at Docker build time
  3. Runs as non-root on port 8080