diff --git a/apps/web/src/app/blog/page.tsx b/apps/web/src/app/blog/page.tsx index 9e3b6d11..7518f1e2 100644 --- a/apps/web/src/app/blog/page.tsx +++ b/apps/web/src/app/blog/page.tsx @@ -1,10 +1,8 @@ import type { Metadata } from "next"; import Link from "next/link"; import { BasePage } from "@/app/base-page"; -import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; import { Separator } from "@/components/ui/separator"; import { getPosts } from "@/lib/blog/query"; -import type { Author, Post } from "@/types/blog"; export const metadata: Metadata = { title: "Blog - OpenCut", @@ -47,27 +45,7 @@ function BlogPostItem({ post }: { post: Post }) {

{post.title}

{post.description}

- {post.authors && post.authors.length > 0 && ( - - )} ); } - -function AuthorList({ authors }: { authors: Author[] }) { - return ( -
- {authors.map((author) => ( -
- - - - {author.name.charAt(0).toUpperCase()} - - -
- ))} -
- ); -}