import Head from 'next/head' import styles from '../styles/Home.module.css' import { Page } from '../components/Page' const demoProps = { user: {}, onLogin: () => {}, onLogout: () => {}, onCreateAccount: () => {}, } export default function Home() { return (
Create Next App {/* Including demo props here for example */}
) }