import Link from "next/link"; const Pagination = ({ page, total, perPage, }: { page: number; total: number; perPage: number; }) => { const pageCount = Math.ceil(total / perPage); return (