aboutsummaryrefslogtreecommitdiff
path: root/pages/page7.js
blob: 52664e651fae94252edd55ea5b71e64bf4aba16b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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>Aftermath</h1>
        <ul>
            <li>Neither Britain nor the United States could defeat the other.</li>
            <li>The two governments decided to negotiate peace.</li>
            <li>The Treaty of Ghent ended the war in February 1815 but left Native American territory exposed to further American expansion.</li>
        </ul>
        <br />
        <Button variant="contained" color="primary" href="page8">Next Page</Button>
      </main>
    </div>
  )
}