The Writing page abandons the conventional blog grid in favour of a comic book rack. Each article becomes a collectible issue — complete with a volume number, publication date, a bold full-bleed colour swatch, and a barcode at the bottom. The effect instantly communicates the personality of the content before a visitor reads a single word, turning what is normally a plain list of links into something you want to flip through.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/dev-arcade/llms.txt
Use this file to discover all available pages before exploring further.
Layout & Card Design
Unlike a standard blog index that renders post titles as anchor tags in a vertical list, the Writing page (/writing) renders a three-column grid of cards labelled LEVEL 5: STRATEGY GUIDES. Every card is styled to look like the cover of a printed comic — a saturated background colour, a thick coloured border, large all-caps title lettering, and metadata positioned exactly where you’d find it on a newsstand issue.
VOL. 42 — OCT 2023
DEFEATING THE MEMORY LEAK BOSS — red-themed cover
VOL. 43 — NOV 2023
SPEEDRUNNING REACT PERFORMANCE — blue-themed cover
VOL. 44 — DEC 2023
THE ULTIMATE CSS GRID CHEAT CODE — green-themed cover
Blog Post Data Structure
Each post is described by a plain object that carries both the content metadata and the Tailwind utility classes that control its visual appearance. This keeps the colour logic co-located with the data instead of scattered across conditional class names.Stagger Entrance Animation
Cards animate in using Framer Motion. Rather than all three appearing at once, each card is delayed by an extra 200 ms relative to the previous one, creating a left-to-right cascade that mimics cards being dealt onto a table.| Card | Delay |
|---|---|
| DEFEATING THE MEMORY LEAK BOSS | 0 ms |
| SPEEDRUNNING REACT PERFORMANCE | 200 ms |
| THE ULTIMATE CSS GRID CHEAT CODE | 400 ms |
Anatomy of a Comic-Book Card
Each card is composed of four visual layers stacked top-to-bottom:Header Bar
A flex row with the issue number pinned to the left (
VOL. 42) and the publication date pinned to the right (OCT 2023), rendered in small uppercase text against the card’s background colour.Title Block
The post title in large, bold, all-caps lettering that fills most of the card’s vertical space. The font weight and size intentionally overpowers the rest of the layout — just like a real comic masthead.
Barcode Graphic
A white rectangle near the bottom of the card containing a row of thin vertical
div bars, each assigned a random width on mount. This purely decorative element reinforces the printed-product aesthetic.The
blogPosts array is the single place to add new writing entries. To publish a new article, append an object with a unique id, title, issue, date, and a matching Tailwind color/border pair.Note that the cards do not currently link anywhere — there is no href field on the BlogPost type. To make them clickable, add an href: string property to the interface, populate it in the data array, and wrap the card (or just the “READ NOW >” label) in a <a href={post.href}> or React Router <Link to={post.href}>.