--- import { type Lang } from '@/types/i18n'; import { ScrollArea } from '@/components/ui/scroll-area'; interface Props { lang: Lang; } const { lang } = Astro.props; const title = lang === 'zh' ? '目录' : 'Table of Contents'; ---