import FundingGoal from "@/components/funding-goal"; import VodCard from "@/components/vod-card"; import { getVodTitle } from "@/components/vod-page"; import { getVods } from '@/lib/vods'; import { IVod } from "@/lib/vods"; import { getVtubers, IVtuber } from "./lib/vtubers"; import VTuberCard from "./components/vtuber-card"; import Link from 'next/link'; import { notFound } from "next/navigation"; export default async function Page() { const vods = await getVods(1, 9, true); const vtubers = await getVtubers(); if (!vtubers) notFound(); // return ( //
  //     
  //       {JSON.stringify(vods.data, null, 2)}
  //     
  //   
// ) return ( <>

The Galaxy's Best VTuber Hentai Site

For adults only (NSFW)

Latest VODs

{vods.data.map((vod: IVod) => ( ))}
See all Latest Vods

VTubers

); }