Ringtone app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 regels
286 B

  1. import {GetServerSideProps, NextPage} from 'next';
  2. type Props = {}
  3. const IndexPage: NextPage<Props> = () => {
  4. return (
  5. <>
  6. Landing Page Here
  7. </>
  8. );
  9. };
  10. export const getServerSideProps: GetServerSideProps = async (ctx) => {
  11. return {
  12. props: {}
  13. }
  14. }
  15. export default IndexPage;