diff --git a/pages/index.tsx b/pages/index.tsx index cdffa57ca..e2509bdf1 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,6 +1,12 @@ -import Head from 'next/head' -import Image from 'next/image' -import styles from '../styles/Home.module.css' +import Head from "next/head"; +import Image from "next/image"; +import styles from "../styles/Home.module.css"; + +export async function getStaticProps(context: any) { + return { + props: {}, // will be passed to the page component as props + }; +} export default function Home() { return ( @@ -17,7 +23,7 @@ export default function Home() {
- Get started by editing{' '}
+ Get started by editing{" "}
pages/index.tsx