13 lines
385 B
TypeScript
Raw Normal View History

2024-01-20 08:16:14 -08:00
2024-07-10 14:11:18 -08:00
import VodPage from '@/app/components/vod-page'
import { IVodPageProps, getVodFromSafeDateOrCuid } from '@/app/lib/vods'
2024-01-20 08:16:14 -08:00
import { notFound } from 'next/navigation';
export default async function Page({ params: { safeDateOrCuid } }: IVodPageProps) {
const vod = await getVodFromSafeDateOrCuid(safeDateOrCuid);
if (!vod) return notFound();
return <VodPage vod={vod} />
}