import styles from "./styles.module.scss" import { Arrow } from '@/components/Arrow/Arrow' import Link from 'next/link' import classNames from 'classnames' type NextPrevButtonsProps = { next?: { text: string, href: string } prev?: { text: string, href: string } } export const NextPrevButtons = ( { next, prev }: NextPrevButtonsProps) => { return (