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 { BlogPost } from '@/lib/payload-posts'; import Link from 'next/link'; interface PostsProps { posts: BlogPost[]; } export default function Posts({ posts }: PostsProps) { return (
{posts.map((post) => ( ))} View More
); }