2024-01-20 16:16:14 +00:00
|
|
|
|
|
|
|
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);
|
2024-07-04 21:20:29 +00:00
|
|
|
console.log('vods as follows')
|
|
|
|
console.log(JSON.stringify(vods, null, 2))
|
|
|
|
|
|
|
|
|
2024-01-20 16:16:14 +00:00
|
|
|
const vtubers = await getVtubers();
|
|
|
|
if (!vtubers) notFound();
|
2024-07-04 21:20:29 +00:00
|
|
|
console.log(`vtubers as follows`)
|
|
|
|
console.log(JSON.stringify(vtubers, null, 2))
|
|
|
|
|
|
|
|
|
2024-01-20 16:16:14 +00:00
|
|
|
|
|
|
|
// return (
|
|
|
|
// <pre>
|
|
|
|
// <code>
|
|
|
|
// {JSON.stringify(vods.data, null, 2)}
|
|
|
|
// </code>
|
|
|
|
// </pre>
|
|
|
|
// )
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div className="main">
|
|
|
|
<section className="section">
|
|
|
|
<div className="container">
|
|
|
|
<h1 className="title">
|
|
|
|
The Galaxy's Best VTuber Hentai Site
|
|
|
|
</h1>
|
|
|
|
<h2 className="subtitle">For adults only (NSFW)</h2>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
2024-03-29 07:28:02 +00:00
|
|
|
<FundingGoal />
|
2024-01-20 16:16:14 +00:00
|
|
|
|
2024-03-29 07:28:02 +00:00
|
|
|
<div className="section">
|
2024-01-20 16:16:14 +00:00
|
|
|
|
|
|
|
<h2 className="is-2 title">Latest VODs</h2>
|
|
|
|
<div className="columns is-multiline is-mobile">
|
|
|
|
|
|
|
|
{vods.data.map((vod: IVod) => (
|
|
|
|
<VodCard
|
|
|
|
key={vod.id}
|
|
|
|
id={vod.id}
|
|
|
|
title={getVodTitle(vod)}
|
|
|
|
date={vod.attributes.date2}
|
|
|
|
muxAsset={vod.attributes.muxAsset.data.attributes.assetId}
|
|
|
|
vtuber={vod.attributes.vtuber.data}
|
|
|
|
thumbnail={vod.attributes.thumbnail?.data?.attributes?.cdnUrl}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<Link className='button' href={`/latest-vods/1`}>See all Latest Vods</Link>
|
2024-03-29 07:28:02 +00:00
|
|
|
</div>
|
|
|
|
<div className="section">
|
2024-01-20 16:16:14 +00:00
|
|
|
|
|
|
|
<h2 className="is-2 title">VTubers</h2>
|
2024-03-29 07:28:02 +00:00
|
|
|
<nav className="columns is-multiline">
|
2024-01-20 16:16:14 +00:00
|
|
|
{vtubers.data.map((vtuber: IVtuber) =>
|
|
|
|
<VTuberCard key={vtuber.id} {...vtuber} />
|
|
|
|
)}
|
2024-03-29 07:28:02 +00:00
|
|
|
</nav>
|
|
|
|
</div>
|
2024-01-20 16:16:14 +00:00
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|