import { GetServerSideProps, NextPage } from 'next' const Bots = ():NextPage => { } export const getServerSideProps: GetServerSideProps = async (context) => { return { a: 1 } } export default Bots