--- import type { Page } from "astro"; import type { CollectionEntry } from "astro:content"; import IconArrowLeft from "@/assets/icons/IconArrowLeft.svg"; import IconArrowRight from "@/assets/icons/IconArrowRight.svg"; import LinkButton from "./LinkButton.astro"; type Props = { page: Page>; }; const { page } = Astro.props; --- { page.lastPage > 1 && ( ) }