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