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