--- import ThemeToggle from './ThemeToggle.astro'; import AsciiLogo from './AsciiLogo.astro'; interface Props { active?: 'home' | 'docs'; } const { active = 'home' } = Astro.props; ---