The Projects page wraps the portfolio’s work in the most iconic UI shell of the early 2000s — the Windows XP My Computer explorer window. AnDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/windows-xp-developer/llms.txt
Use this file to discover all available pages before exploring further.
AquaWindow with the title “My Computer \ Projects” contains a full file-browser layout: an address bar showing C:\Users\Alex\Projects, a left-hand System Tasks sidebar, and a main icon grid listing three project folders and a README.txt file. Double-clicking a folder reveals an inline detail panel for that project.
Visual overview
The explorer chrome is faithful to Windows XP’s Luna theme. A toolbar row at the top contains a greyed-out Back button and an active Forward button. The address bar shows the path with a folder icon. The left sidebar has a collapsible System Tasks panel (with a blue gradient header) and a Search for file link. The main pane renders each project as a large folder icon with the project name beneath it.README.txt sits at the end of the list as a plain text file. Hovering a folder highlights it; double-clicking opens the detail panel in the same window without a route change.
Folder icons
Three project folders render as large Windows XP-style yellow folder icons with the project name underneath. Single-click selects; double-click opens the detail view.
Detail panel
On double-click, a slide-in detail panel replaces the icon grid, showing the project description, tech stack badges, and links for the live demo and GitHub repo.
The three projects
All project data is stored in an array in the Projects route component insideassets/main.js:
| Name | Type | Date | Size | Tech stack |
|---|---|---|---|---|
| Aero UI Kit | folder | 10/24/2025 | 12 MB | React, Tailwind, Framer Motion |
| Nostalgia Player | folder | 08/15/2025 | 45 MB | TypeScript, Web Audio API, Canvas |
| Glass Dashboard | folder | 05/02/2025 | 8 MB | Next.js, Recharts, Tailwind |
README.txt is a static file entry (type "file") with the prompt “Double click a folder to view project details.”
Component structure
Customization
Project entries live in theprojects array in the Projects route component inside assets/main.js. The compiled bundle is minified — locate the array by searching for "Aero UI Kit". Each entry supports the following fields:
Key interactions
| Interaction | Behaviour |
|---|---|
| Single-click folder | Highlights the icon with a blue selection tint |
| Double-click folder | Opens the inline detail panel showing description, tech badges, and demo/GitHub links |
| Double-click README.txt | No action — type: "file" entries are non-interactive |
| Back button (toolbar) | Active only when a detail panel is open — returns to the icon grid |
| Forward button (toolbar) | Greyed out and non-functional by default |
The
README.txt entry at the end of the projects list is intentional: it serves as a friendly hint for visitors who may not immediately realise the folder icons are double-clickable. Its description text is “Double click a folder to view project details.”