The About page goes deeper than a standard bio. It tells an honest story about a non-traditional path into software development, showcases a mock guestbook with authentic Y2K flavor, and ends with a grid of developer pet peeves dressed up as pixel-art bugs. ThreeDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/neocities-dev/llms.txt
Use this file to discover all available pages before exploring further.
WindowPanel components carry the content: origin_story.txt, guestbook_preview.html, and pet_peeves.gif.
What’s on this page
origin_story.txt — Career Path Panel (cyan WindowPanel)
The top panel, spanning full width, presents the “How I Got Here” narrative. The headline is a 3xl pixel-art title in y2k-magenta. Below two paragraphs of prose sits a visual career flow — a horizontal sequence of labelled nodes rendered in monospace within lime-bordered <span> boxes.
Career Path Flow
The path is rendered as an inline-flex row of nodes connected by→ arrows. The final node pulses:
The flow uses a
flex-wrap layout so that on small screens it wraps gracefully rather than overflowing horizontally. The Curiosity node switches to cyan styling to mark the inflection point where the career path turned toward development.guestbook_preview.html — Guestbook Panel (purple WindowPanel)
The left-column panel (md:col-span-1) shows a mock guestbook with a “Sign My Guestbook!” header styled in y2k-cyan with a bottom border underline.
Two sample guestbook entries are displayed:
xX_CoolDev_Xx
Date: 10/24/1999“Awesome site! Love the tiled background. Do you want to join my webring?”
Mom
Date: 10/25/1999“Very nice dear. How do I close this window?”(Rendered at 50% opacity — dimmed for comedic effect)
<div> with a flex header row showing name and date, separated from the body by a border-b border-[#333]:
The guestbook is intentionally read-only on the About page — a preview panel only. The Home page ticker also notes that the full guestbook is
currently down for maintenance 🛠️.pet_peeves.gif — Pet Peeves Grid (magenta WindowPanel)
The right panel (md:col-span-2) presents four developer pet peeves as a 2×2 grid. Each cell contains a pixel-art SVG icon in a colored border box, alongside a title and a one-liner subtitle. Cells have hover:border-{color} transition-colors applied for subtle interactivity.
| Pet Peeve | Color | Icon Path | Subtitle |
|---|---|---|---|
| Awkward Wording | Magenta | Face-like path | "Click here to click here" |
| Crooked Alignment | Cyan | Crosshair path | "Off by 1px. Unacceptable." |
| Off-center Buttons | Lime | Nested square path | "Flexbox exists for a reason." |
| Fake Enthusiasm | Orange | Diamond path | "We are THRILLED to announce a minor bug fix!" |
Layout Structure
The About page uses a two-section vertical stack:origin_story.txt— full-width,flex-none, no scroll clipping.- Three-column grid —
grid-cols-1 md:grid-cols-3:- Left:
guestbook_preview.html(1 column,h-full) - Right:
pet_peeves.gif(2 columns,h-full, inner grid withoverflow-y-auto)
- Left:
flex flex-col gap-6 max-w-5xl mx-auto h-full — height-bounded so that the panels fill the available viewport without a page-level scroll.