Files
NotionNext/themes/nobelium/components/BlogPost.js
tangly1024.com a0b481eaca build
2023-11-06 16:28:01 +08:00

29 lines
833 B
JavaScript

import Link from 'next/link'
import { siteConfig } from '@/lib/config'
const BlogPost = ({ post }) => {
return (
(<Link href={`${siteConfig('SUB_PATH')}/${post.slug}`}>
<article key={post.id} className="mb-6 md:mb-8">
<header className="flex flex-col justify-between md:flex-row md:items-baseline">
<h2 className="text-lg md:text-xl font-medium mb-2 cursor-pointer text-black dark:text-gray-100">
{post.title}
</h2>
<time className="flex-shrink-0 text-gray-600 dark:text-gray-400">
{post?.publishDay}
</time>
</header>
<main>
<p className="hidden md:block leading-8 text-gray-700 dark:text-gray-300">
{post.summary}
</p>
</main>
</article>
</Link>)
)
}
export default BlogPost