Small Website to play Web-based games.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

16 rindas
305 B

  1. import type { NextPage } from 'next'
  2. import {GetServerSideProps} from 'next';
  3. const HomePage: NextPage = () => null
  4. export const getServerSideProps: GetServerSideProps = async () => {
  5. return {
  6. redirect: {
  7. destination: '/games',
  8. permanent: false,
  9. },
  10. };
  11. }
  12. export default HomePage