You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(site): make home hero + feature cards clickable
Starlight's <Card> is display-only; <LinkCard> is the clickable
variant, so all 4 home-page cards were dead. Switch to <LinkCard>.
Also: hero frontmatter links and <LinkCard> href props don't run
through Astro's base-path transformer, so on deployments with
base='/skills-driven-development' they emitted bare '/why-skdd/'
and 404'd against the domain root. Fix by hardcoding the base in
the hero (YAML can't do expressions) and computing the base via
import.meta.env.BASE_URL in an exported MDX constant for the cards.
Expand from 4 to 6 cards to match the sidebar, and add a Quick
start hero button pointing at /configuration/.
0 commit comments