The Skills page (Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/webmaster/llms.txt
Use this file to discover all available pages before exploring further.
/skills) reimagines a standard competency list as a classic arcade high-score screen. Seven technologies are displayed as leaderboard entries — complete with rank labels, numeric scores, three-character initials, and a pulsing “INSERT COIN TO CONTINUE…” footer. Below the scoreboard, four trait cards (🧠 🐛 ☕ 💾) are arranged in a 2-to-4-column responsive grid.
Route
| Path | Component function |
|---|---|
/skills | ie() in assets/main.js |
Scores Data Array
The full leaderboard is driven by theae constant defined just above ie():
name field), SCORE, and NAME (the 3-character initial).
Visual Hierarchy
1st Place
Entire row in
text-cyan-400. Carries the ▲ animate-bounce indicator.2nd & 3rd Place
Default white text. Carry the
▲ animate-bounce indicator (r < 3 condition).4th–7th Place
Default white text, no bounce indicator. Hover triggers
bg-white/10 highlight.Scoreboard Container
The dark arcade cabinet is styled withbg-black p-8 border-8 border-silver bevel-container-inset relative overflow-hidden. A subtle bg-gradient-to-b from-white/10 to-transparent overlay covers the top third to simulate a monitor reflection:
Column Header Row
The header row usestext-yellow-400 with a border-b-2 border-yellow-400 separator:
Score Row Rendering
Each entry is rendered via.map(). The r === 0 check applies cyan colouring to the top entry; r < 3 conditionally renders the bouncing triangle:
“INSERT COIN” Footer
At the bottom of the arcade cabinet, a green pulsing prompt mimics a real arcade attract screen:Trait Cards
Four soft-skill badges sit below the scoreboard in a grid that is 2 columns on mobile and 4 onmd: breakpoint:
bevel-container p-2 bg-silver wrapping a bg-white p-2 inner panel with an emoji and a bold label:
| Emoji | Label |
|---|---|
| 🧠 | Fast Learner |
| 🐛 | Bug Squasher |
| ☕ | Coffee Powered |
| 💾 | Always Backs Up |
Customisation Guide
The
"MAD SKILLZ" title sits on a bg-black background with a border-4 border-hotpink frame and renders the text in text-lemon (a custom yellow utility class). It’s wrapped in a text-center mb-8 div — update the heading string directly inside the <h2> at the top of ie().