aboutsummaryrefslogtreecommitdiff
path: root/pages/page2.js
blob: d21c5c00fc177fcc74e4e624347957a8092a8046 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>
  )
}