import FundingGoal from "@/app/components/funding-goal"; import VodCard from "@/app/components/vod-card"; import { getVodTitle } from "@/app/components/vod-page"; import { getVods } from '@/app/lib/vods'; import { IVod } from "@/app/lib/vods"; import { IVtuber } from 'types'; import { getVtubers } 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); // console.log('vods as follows') // console.log(JSON.stringify(vods, null, 2)) const vtubers = await getVtubers(); if (!vtubers) notFound(); // console.log(`vtubers as follows`) // console.log(JSON.stringify(vtubers, null, 2)) // 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

); }