import { GetServerSideProps, NextPage } from 'next' import Container from '../../components/Container' const Bots:NextPage = () => { return

GG

} export const getServerSideProps: GetServerSideProps = async (context) => { return { props: { data: {} } } } export default Bots