--- import { ChevronDown } from 'lucide-react'; import type { Guide, SupportedFramework } from '@/types/docs'; type Props = { prev: Guide | null; next: Guide | null; framework: SupportedFramework; docTitles: Map; }; const { prev, next, framework, docTitles } = Astro.props; function getGuideUrl(framework: SupportedFramework, slug: string): string { return `/docs/framework/${framework}/${slug}`; } ---