diff options
Diffstat (limited to 'pages/page2.js')
| -rw-r--r-- | pages/page2.js | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pages/page2.js b/pages/page2.js new file mode 100644 index 0000000..d21c5c0 --- /dev/null +++ b/pages/page2.js @@ -0,0 +1,19 @@ +import Head from 'next/head' +import styles from '../styles/Home.module.css' +import Button from '@material-ui/core/Button' + +export default function Home() { + return ( + <div className={styles.container}> + <Head> + <title>The War of 1812</title> + <link rel="icon" href="/favicon.ico" /> + </Head> + + <main className={styles.main}> + <h1>The Cause Of This War</h1> + <Button variant="contained" color="primary" href="#">Next Page</Button> + </main> + </div> + ) +} |
