mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 23:16:47 +00:00
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
import { useGlobal } from '@/lib/global'
|
|
import Link from 'next/link'
|
|
|
|
/**
|
|
* 上一篇,下一篇文章
|
|
* @param {prev,next} param0
|
|
* @returns
|
|
*/
|
|
export default function ArticleAround({ prev, next }) {
|
|
if (!prev || !next) {
|
|
return <></>
|
|
}
|
|
const { locale } = useGlobal()
|
|
return (
|
|
<section className='text-gray-800 dark:text-gray-400 flex items-center justify-between gap-x-3 my-4'>
|
|
<Link
|
|
href={prev.href}
|
|
passHref
|
|
className='rounded border w-full h-20 px-3 cursor-pointer justify-between items-center flex hover:text-green-500 duration-300'>
|
|
<i className='mr-1 fas fa-angle-left' />
|
|
<div>
|
|
<div>{locale.COMMON.PREV_POST}</div>
|
|
<div>{prev.title}</div>
|
|
</div>
|
|
</Link>
|
|
|
|
<Link
|
|
href={next.href}
|
|
passHref
|
|
className='rounded border w-full h-20 px-3 cursor-pointer justify-between items-center flex hover:text-green-500 duration-300'>
|
|
<div>
|
|
<div>{locale.COMMON.NEXT_POST}</div>
|
|
<div> {next.title}</div>
|
|
</div>
|
|
<i className='ml-1 my-1 fas fa-angle-right' />
|
|
</Link>
|
|
</section>
|
|
)
|
|
}
|