2024-01-20 16:16:14 +00:00
|
|
|
|
2024-07-10 22:11:18 +00:00
|
|
|
import VodPage from '@/app/components/vod-page';
|
|
|
|
import { IVodPageProps, getVodFromSafeDateOrCuid } from '@/app/lib/vods';
|
2024-01-20 16:16:14 +00:00
|
|
|
import { notFound } from 'next/navigation';
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This route exists as backwards compatibility for Futureporn 0.0.0 which was on neocities
|
|
|
|
* @see https://www.w3.org/Provider/Style/URI
|
|
|
|
*/
|
|
|
|
export default async function Page({ params: { safeDateOrCuid, slug } }: IVodPageProps) {
|
|
|
|
const vod = await getVodFromSafeDateOrCuid(safeDateOrCuid);
|
|
|
|
if (!vod) notFound();
|
|
|
|
return <VodPage vod={vod} />
|
|
|
|
}
|
|
|
|
|