The Skills page — titled Skill Constellation — visualizes technical proficiency as a star map rather than a progress-bar list. An interactive SVG graph renders each skill as a node connected by glowing edges, inviting visitors to explore relationships between technologies. Below it, the Cauldron component adds a playful drag-and-drop minigame where skills can be combined into “brews.”Documentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/digital-coven/llms.txt
Use this file to discover all available pages before exploring further.
Route
Page Header
text-magenta with an explicit drop-shadow-[0_0_15px_var(--magenta)] utility — unlike other pages that use the glow-text-* shorthand classes, this is an inline Tailwind arbitrary value. The glow radius is 15px rather than the standard 8-10px used on other pages, making this the most visually intense title treatment in the app.
Component Composition
The page functionut is the simplest of all page functions — two components below the header with no local state or data:
SkillConstellation
An interactive SVG force-directed graph where each node represents a technology. Nodes glow when hovered and can be dragged to rearrange the star map. Connected nodes share a glowing edge line.
Cauldron
A drag-and-drop brewing minigame. Skill tokens can be dragged into the cauldron to produce “brew” results — named combinations of technologies with humorous descriptions.
SkillConstellation
Imported asSe from components/skills/SkillConstellation.js. The component renders an SVG canvas with:
- Nodes: circular SVG elements, one per skill, with a label and a radial glow effect
- Edges:
<line>elements connecting related skill nodes, styled withstroke: var(--cyan)at low opacity - Interaction: nodes respond to
mouseenter/mouseleavefor glow amplification, and support drag-repositioning via pointer events - Layout: uses a force-simulation algorithm to naturally space nodes; initial positions are randomized within the SVG viewport
The exact skill node list and edge connections are defined within
SkillConstellation.js. Refer to the SkillConstellation component docs for the full node data structure.Cauldron
Imported asTe from components/skills/Cauldron.js. The component presents:
- A stylized cauldron SVG with a bubbling animation
- Draggable skill ingredient tokens positioned around the cauldron
- A result display area that shows the “brew name” and description when a valid combination is detected
- A reset button to clear the cauldron and return ingredients to their start positions
Layout
The page usesmax-w-6xl mx-auto py-12 — a centered, padded single-column layout:
Component Imports
Animation Entry
The page headermotion.h1 uses the standard Digital Coven entrance pattern:
SkillConstellation and Cauldron components manage their own internal animation states independently of the page-level Framer Motion tree.