Update site content, styling, and review layout

Revise about page, hello world post, and The Compound review. Add book
cover support to review template, favicon, typographer config, and
cover image enrichment script.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Louis Simoneau
2026-04-10 08:14:29 +10:00
parent 6c7afecce1
commit 0d4050c58c
10 changed files with 192 additions and 19 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@@ -336,6 +336,14 @@ article hr {
}
/* ── Book review ───────────────────────────────── */
.book-cover {
float: right;
width: 180px;
margin: 0 0 1rem 1.5rem;
border: 1px solid var(--border);
border-radius: 2px;
}
.book-meta {
font-family: var(--font-mono);
font-size: 0.75rem;
@@ -528,6 +536,13 @@ article hr {
padding-top: 0;
}
.book-cover {
float: none;
display: block;
width: 100px;
margin: 0 0 1.25rem 0;
}
.book-meta {
grid-template-columns: 1fr;
gap: 0.5rem;

16
site/static/favicon.svg Normal file
View File

@@ -0,0 +1,16 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
<rect width="32" height="32" fill="#0b0d0a"/>
<!-- Pixel art M — each "pixel" is a 2x2 block on the 32x32 grid -->
<!-- Left vertical stroke -->
<rect x="6" y="8" width="4" height="18" fill="#5bff8f"/>
<!-- Right vertical stroke -->
<rect x="22" y="8" width="4" height="18" fill="#5bff8f"/>
<!-- Left diagonal -->
<rect x="10" y="10" width="2" height="4" fill="#5bff8f"/>
<rect x="12" y="14" width="2" height="4" fill="#5bff8f"/>
<!-- Right diagonal -->
<rect x="20" y="10" width="2" height="4" fill="#5bff8f"/>
<rect x="18" y="14" width="2" height="4" fill="#5bff8f"/>
<!-- Center peak -->
<rect x="14" y="16" width="4" height="4" fill="#5bff8f"/>
</svg>

After

Width:  |  Height:  |  Size: 722 B