'use client' import { ChevronLeft, ChevronRight } from 'lucide-react' import Link from 'next/link' interface PageNavigationArrowsProps { previous?: { url: string } next?: { url: string } } export function PageNavigationArrows({ previous, next }: PageNavigationArrowsProps) { if (!previous && !next) return null return (
{previous && ( )} {next && ( )}
) }