diff --git a/pages/categories/index.tsx b/pages/categories/index.tsx index 22d0cec..ef0e517 100644 --- a/pages/categories/index.tsx +++ b/pages/categories/index.tsx @@ -4,6 +4,7 @@ import dynamic from 'next/dynamic' import { categories, categoryIcon } from '@utils/Constants' const Container = dynamic(() => import('@components/Container')) +const Advertisement = dynamic(() => import('@components/Advertisement')) const Tag = dynamic(() => import('@components/Tag')) const SEO = dynamic(() => import('@components/SEO')) const Segment = dynamic(() => import('@components/Segment')) @@ -21,6 +22,7 @@ const Categories:NextPage = () => { } + } diff --git a/pages/list/new.tsx b/pages/list/new.tsx index 3b7f5d1..9846bd0 100644 --- a/pages/list/new.tsx +++ b/pages/list/new.tsx @@ -21,6 +21,7 @@ const New:NextPage = ({ data }) => { data.data.map(bot => ) } + } diff --git a/pages/list/votes.tsx b/pages/list/votes.tsx index 08b5f53..61b8c1b 100644 --- a/pages/list/votes.tsx +++ b/pages/list/votes.tsx @@ -30,7 +30,9 @@ const Votes:NextPage = ({ data }) => { } - + + + } export const getServerSideProps = async (ctx:Context) => { let data: BotList