The Skills page (Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/aurora-cosmos/llms.txt
Use this file to discover all available pages before exploring further.
/skills) titled “Skill Galaxy Map” takes a radically visual approach: instead of progress bars or flat lists, it renders skills as pill badges orbiting a central “DEV” sun in a solar-system metaphor. Each orbit ring represents a skill category, and the badges continuously rotate at different speeds so the page has constant motion without feeling distracting. The subtitle reads “Orbiting competencies and technical gravity.”
Layout overview
The page usespy-12 min-h-[80vh] flex flex-col items-center. The orbit visualization sits inside a relative w-full max-w-[900px] aspect-square container. On smaller screens the map is scaled down with scale-75, and mt-[-100px] compensates for the collapsed vertical space. On md: and above it renders at full size without the negative margin.
The center of the system is a w-16 h-16 rounded-full gradient sphere (bg-gradient-to-tr from-white to-aurora-turquoise) with a shadow-[0_0_50px_rgba(94,234,212,0.8)] animate-pulse glow and the text “DEV” in font-display font-bold text-space-900.
Orbit ring structure
Four orbit rings are defined in the source array. Each ring has:name— the category label (e.g. “Core Languages”)radius— the pixel radius of the orbit (120 / 220 / 320 / 420)color—text-*token for badge label colorborderColor—border-*token for badge and dashed ring borderskills— array of skill strings to distribute evenly around the ring
- A
divwithborder-dashedand the ring’sborderColor/20atwidth/height: radius * 2, creating the faint dashed orbit path. - A
motion.divwithanimate={{ rotate: 360 }}running in an infinite loop atduration: 30 + index * 15seconds — outer rings rotate more slowly. - Each skill badge is a counter-rotating
motion.divwithanimate={{ rotate: -360 }}at the same duration, so the text always reads upright while the badge itself orbits. - A category label badge placed at the bottom of each orbit ring, also counter-rotating to stay readable.
The counter-rotation trick (
rotate: 360 on the ring, rotate: -360 on each badge) is what keeps the skill text upright as it orbits. Both animations must share the exact same duration and repeat: Infinity settings, or the text will slowly drift out of alignment.Orbit ring categories
Core Languages (r:120)
Innermost orbit in
text-aurora-turquoise / border-aurora-turquoise. Template skills: JavaScript, TypeScript, HTML/CSS, Python. Rotates at duration: 30s.Frontend Universe (r:220)
Second orbit in
text-aurora-teal / border-aurora-teal. Template skills: React, Next.js, Tailwind, Framer Motion. Rotates at duration: 45s.Backend & Data (r:320)
Third orbit in
text-cosmic-violet / border-cosmic-violet. Template skills: Node.js, PostgreSQL, REST APIs, GraphQL. Rotates at duration: 60s.Tools & Tactics (r:420)
Outermost orbit in
text-cosmic-magenta / border-cosmic-magenta. Template skills: Git/GitHub, Debugging, Docs, UI/UX Design. Rotates at duration: 75s.Color tokens used
| Element | Token / class |
|---|---|
| Center sun gradient | from-white to-aurora-turquoise |
| Center glow | shadow-[0_0_50px_rgba(94,234,212,0.8)] |
| Page heading gradient | from-aurora-teal to-cosmic-violet |
| Ring 1 (Core Languages) | text-aurora-turquoise, border-aurora-turquoise |
| Ring 2 (Frontend) | text-aurora-teal, border-aurora-teal |
| Ring 3 (Backend) | text-cosmic-violet, border-cosmic-violet |
| Ring 4 (Tools) | text-cosmic-magenta, border-cosmic-magenta |
| Skill badge background | glass-panel + ring borderColor/50 border |
| Category label | bg-space-900/80 border-white/5 text-slate-500 |
Customization guide
Replace skill names
The skill data is compiled into the
ge array in assets/main.js. To customize, fork the original source and edit the skillCategories array before rebuilding, or edit assets/main.js directly (not recommended for large changes). Each entry’s skills field is a plain string array:Adjust skills per orbit
Each orbit distributes skills evenly using
index / skills.length * 360 degrees. You can have any number of skills per ring — the math auto-distributes them. For best readability, keep each ring to 4–6 skills so badges don’t overlap.Add or remove orbit rings
To add a fifth category, push a new entry with
radius: 520 (incrementing by 100 px from the outermost ring). Choose a new color token or reuse one. The duration formula is 30 + index * 15, so a fifth ring at index 4 would rotate over 90s.Change the center label
The center sphere shows “DEV” — replace it with your initials, a short emoji, or any 1–4 character string. Keep it short: the sphere is only
w-16 h-16.