--- import type { PaginationLink } from "@/types"; interface Props { nextUrl?: PaginationLink; prevUrl?: PaginationLink; } const { nextUrl, prevUrl } = Astro.props; --- { (prevUrl || nextUrl) && ( ) }