--- import Link from '@components/Link.astro' import { ArrowLeft, ArrowRight } from 'lucide-react' import { buttonVariants } from '@/components/ui/button' import { cn } from '@/lib/utils' const { prevPost, nextPost } = Astro.props ---
{prevPost?.data.title || 'Latest post!'} {nextPost?.data.title || 'Last post!'}