import {GetServerSideProps, NextPage} from 'next'; type Props = {} const IndexPage: NextPage = () => { return ( <> Landing Page Here ); }; export const getServerSideProps: GetServerSideProps = async (ctx) => { return { props: {} } } export default IndexPage;