summaryrefslogtreecommitdiff
path: root/src/app/(home)/_components/posts.tsx
blob: 8c8dc33f387078d613ef1dd1d121ba3997d12276 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { Icons } from '@/components/icons/icons';
import { PostCard } from '@/components/posts/post-card';
import { Section } from '@/components/section';
import { buttonVariants } from '@/components/ui/button';
import type { Page } from '@/lib/source';
import Link from 'next/link';

export default function Posts({ posts }: { posts: Page[] }) {
  return (
    <Section>
      <div className='grid divide-y divide-dashed divide-border/70 text-left dark:divide-border'>
        {posts.map((post) => {
          const date = new Date(post.data.date).toDateString();
          return (
            <PostCard
              title={post.data.title}
              description={post.data.description ?? ''}
              image={post.data.image}
              url={post.url}
              date={date}
              key={post.url}
              author={post.data.author}
              tags={post.data.tags}
            />
          );
        })}
        <Link
          href='/posts'
          className={buttonVariants({
            variant: 'default',
            className: 'group rounded-none py-4 sm:py-8',
          })}
        >
          View More
          <Icons.arrowUpRight className='group-hover:-rotate-12 ml-2 size-5 transition-transform' />
        </Link>
      </div>
    </Section>
  );
}