The About page presents a personal bio in a fully retro layout. Content is organized into a three-column grid — a left column holding the profile photo window and a speech-bubble “currently” status note, and a wider right column containing a Stats & Facts list, a Likes & Dislikes grid, and a MySpace-style “Top 8 Inspirations” gallery. Each section leans into early-2000s web culture: pixel fonts, dashed borders, bright accent colors, and an animated spinning badge overlaid on the profile photo.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/y2k-web/llms.txt
Use this file to discover all available pages before exploring further.
Page Sections
Profile Window
The left column contains aWindowFrame titled me.jpg. Inside it:
- Photo — a
<img>element pointing to a placeholder image URL. Replace this with your own photo. - Spinning badge — a Framer Motion
motion.divoverlaid in the top-right corner of the photo, rotating 360° on a 10-second loop. It reads 100% NERD and uses a star/polygonclip-pathshape.
Currently: building cool stuff and listening to MP3s.This is a
<div> with a rotated diamond pseudo-element for the speech-bubble tail, rendered in Comic Sans style. It is not an AIM away-message component — it is a static inline element.
Stats & Facts
The right column opens with aStats & Facts heading followed by a bulleted list of hardcoded profile facts:
| Field | Value |
|---|---|
| Name | The Webmaster |
| Location | Cyberspace |
| Occupation | Code Ninja / Pixel Pusher |
| Favorite Tag | <blink> (RIP) |
Likes & Dislikes
A two-column grid showing 👍 LIKES and 👎 DISLIKES as square-bulleted lists: LIKES: Clean Code · Pizza · Mechanical Keyboards · CSS Variables DISLIKES: Internet Explorer 6 · Spam · Broken Links · Merge ConflictsTop 8 Inspirations
Below the main grid, a full-widthbg-win-gray panel titled “My Top 8 Inspirations” renders a 2×4 (mobile) or 4×2 (wider) gallery of portrait cards. Each card shows a name and a square photo. The eight entries are: Tom, Linus, Ada, Grace, Tim, Brendan, Håkon, You!
Route Registration
The About component (Dp in the compiled bundle) is mounted at /about:
Updating the Profile Photo
Find the<img> inside the WindowFrame titled me.jpg and replace the src:
Updating the Status Note
Locate the yellow speech-bubble<div> below the WindowFrame and update the paragraph text:
Updating Stats & Facts
Edit the<li> items inside the Stats & Facts <ul> directly in the About component source:
Updating Likes & Dislikes
Find the two<ul> elements inside the Likes & Dislikes grid and edit their <li> children:
Updating the Top 8
The Top 8 data is an inline array of{ name, img } objects rendered with .map(). Find the array in the About component and swap out names and image URLs: