fp/packages/next/app/vods/[safeDateOrCuid]/page.tsx

17 lines
524 B
TypeScript
Raw Normal View History

2024-01-20 16:16:14 +00:00
import VodPage from '@/components/vod-page';
import { IVodPageProps, getVodFromSafeDateOrCuid } from '@/lib/vods';
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} />
}