--- // /skills/ — chapter page. Migrated from skills/index.html in task 13. // Identical URL (/skills/). The package-anatomy picker is an Astro island // (SkillPackageExplorer) — the only JS the page ships. Copy lives in // src/content/chapters/skills.json. import { getEntry } from 'astro:content'; import ChapterLayout from '../layouts/ChapterLayout.astro'; import ChapterHero from '../components/blocks/ChapterHero.astro'; import SkillPackageExplorer from '../components/islands/SkillPackageExplorer.astro'; import skillsStylesheet from '../../legacy/styles/skills.css?url'; // Required-field guard. The chapters schema marks section eyebrow / // panelLabel / panelCode / steps / copy as optional because the schema // does not know which page consumes which shape. These four pages do // consume them — fail loudly here rather than rendering a blank section. function requireField(value: T | undefined, name: string): T { if (value === undefined) { throw new Error(`skills chapter: missing required field "${name}"`); } return value; } const base = import.meta.env.BASE_URL; const chapter = await getEntry('chapters', 'skills'); if (!chapter) { throw new Error('skills chapter: missing collection entry'); } const lede = chapter.data.lede.en; const title = chapter.data.title.en; const eyebrow = chapter.data.eyebrow.en; const sections = chapter.data.sections ?? []; const anatomySection = sections[0]; const createSection = sections[1]; if (!anatomySection) { throw new Error('skills chapter: missing sections[0]'); } if (!createSection) { throw new Error('skills chapter: missing sections[1]'); } const anatomyEyebrow = requireField(anatomySection.eyebrow, 'sections[0].eyebrow'); const anatomyCopy = requireField(anatomySection.copy, 'sections[0].copy'); const createEyebrow = requireField(createSection.eyebrow, 'sections[1].eyebrow'); const createSteps = requireField(createSection.steps, 'sections[1].steps'); --- ]+>/g, '')}> ← ROUTE MAP 03 / SKILLS review desk ↗

{anatomyEyebrow.en}

{anatomyCopy.en}

{createEyebrow.en}

{ createSteps.map((step, index) => (
{String(index + 1).padStart(2, '0')}
{step.label.en} {step.copy.en}
)) }