The About page (Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/press-start/llms.txt
Use this file to discover all available pages before exploring further.
_ component, route /about) reframes a conventional bio as an RPG origin story. Three chapters — each titled as a numbered level — scroll into view one at a time as the visitor moves down the page. Every chapter uses an IntersectionObserver to slide in from below on first visibility, creating the feeling of unlocking a new area of the map. The section closes with a blinking “PERK UNLOCKED” achievement card listing passive character traits, and a full-width pixel-font quote.
Route
/about
Chapter layout
Each chapter is rendered by theB sub-component and follows the same structure: a pixel-art icon on one side, heading and body copy on the other. Even-indexed chapters have the icon on the left; odd-indexed chapters flip to md:flex-row-reverse so the icon appears on the right, creating a zigzag reading flow on wider screens.
Chapter data
The chapters are defined in theG array inside the _ component block in main.js. Each object has this shape:
Changing chapter content
To edit an existing chapter, find the matching object in theG array and update title and text directly.
To add a chapter, append a new object to the array. The alternating layout is derived automatically from the array index (n % 2 === 0), so the new chapter will zigzag correctly without any additional configuration.
Scroll-in animation
TheB component attaches an IntersectionObserver to its root element. When the chapter crosses the threshold: 0.2 boundary, a state flag flips and Tailwind transitions the element from opacity-0 translate-y-12 to opacity-100 translate-y-0 over 1 000 ms. The animation fires only once — the observer disconnects immediately after the first intersection.
Perk Unlocked card
Below the three chapters sits a yellow-bordered achievement card withanimate-pulse-fast. It lists five passive traits as a bullet list:
- Detail-oriented
- Creative problem solver
- Highly sarcastic
- Practical builder
- Spots crooked alignment from across the room
text-arcade-green; the last is text-arcade-magenta for comic emphasis. These traits are hardcoded in JSX inside the _ component — edit them directly in main.js to match the real developer personality.
Closing quote
The page ends with a full-width blockquote in VT323 font at 4–5xl size:“I don’t just write code.Both the quote text and its neon-green glow style are hardcoded in JSX. Replace the string literal to customise.
I build systems that make sense.”
All bio copy — chapter text, perk bullets, and the closing quote — is hardcoded directly in the component JSX. There is no CMS or external data file for this page. Edit
main.js (or the source component before bundling) to update any copy.