import Link from "next/link"; import type { IVtuber } from '@futureporn/types'; import { getVodsForVtuber } from "@/app/lib/vods"; import Image from "next/legacy/image" import NotFound from "@/app/vt/[slug]/not-found"; import ArchiveProgress from "./archive-progress"; export default async function VTuberCard(vtuber: IVtuber) { const { id, slug, display_name, image_blur, image } = vtuber; if (!image_blur) return

This VTuberCard is missing image_blur

const vods = await getVodsForVtuber(id) if (!vods) return return (
{display_name}

{display_name}

) }