import VodsList from '@/components/vods-list'; import { IVodsResponse } from '@/lib/vods'; import Pager from '@/components/pager'; import { getVods } from '@/lib/vods'; interface IPageParams { params: { slug: string; } } export default async function Page({ params }: IPageParams) { const vods: IVodsResponse = await getVods(1, 24); return ( <>

Latest VODs

page 1

) }