Files
NotionNext/themes/next/components/BlogAround.js
2025-07-24 16:43:20 +08:00

33 lines
898 B
JavaScript

import SmartLink from '@/components/SmartLink'
/**
* 上一篇,下一篇文章
* @param {prev,next} param0
* @returns
*/
export default function BlogAround ({ prev, next }) {
if (!prev || !next) {
return <></>
}
return (
<section className='text-gray-800 border-t dark:text-gray-300 flex flex-wrap lg:flex-nowrap lg:space-x-10 justify-between py-2'>
{prev && <SmartLink
href={`/${prev.slug}`}
passHref
className='text-sm py-3 text-gray-500 hover:underline cursor-pointer'>
<i className='mr-1 fas fa-angle-double-left' />{prev.title}
</SmartLink>}
{next && <SmartLink
href={`/${next.slug}`}
passHref
className='text-sm flex py-3 text-gray-500 hover:underline cursor-pointer'>
{next.title}
<i className='ml-1 my-1 fas fa-angle-double-right' />
</SmartLink>}
</section>
);
}