import type { GetStaticProps, NextPage } from 'next' import Head from 'next/head' import { About } from '../components/About' import { FormExample } from '../components/FormExample' import { Header } from '../components/Header' const Home: NextPage = () => { return ( <> react-component-form
) } export const getStaticProps: GetStaticProps = async () => { return { props: {} } } export default Home