1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
--- import PrevNextNav from "@components/templates/PrevNextNav.astro"; interface Props { first?: string | URL; previous?: string | URL; next?: string | URL; last?: string | URL; label?: string; } --- <PrevNextNav {...Astro.props} /> <slot /> <PrevNextNav {...Astro.props} />