blob: 95e73856dffe311270b51d09174ea8002d6b0368 (
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
26
27
28
29
30
31
32
33
34
|
import Head from 'next/head'
import styles from '../styles/Page.module.css'
import Link from 'next/link'
import Button from '@material-ui/core/Button'
export default function ChildhoodAdulthood() {
return (
<div className={styles.container}>
<Head>
<title>Lawrence Hill Project</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<main className={styles.main}>
<h1>Childhood & Young Adulthood</h1>
<Link href="/">
<Button variant="contained" color="primary">Back to home</Button>
</Link>
<p>Lawrence was born on January 1st, 1957 on Newmarket, Ontario. His father immigrated to Canada after he was married in 1953.</p>
<img src="https://upload.wikimedia.org/wikipedia/commons/e/e7/NewmarketOTH.jpg" height="20%" width="20%"/>
<p>His grandfather and great grandfather were university graduates and ministers of the African Methodist Episcopal Church.</p>
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/e/e7/Amesheild.svg/1200px-Amesheild.svg.png" height="10%" width="10%"/>
<p>His mother was a civil rights activist in D.C and she also came from a republican family.</p>
<p>Lawrence was influenced by his parent’s work by the humans rights movement.</p>
</main>
<footer className={styles.footer}>
<p>
Powered by{' '}
Next.JS & Netlify. {' '}
<a href="https://alee14.me" target="_blank">Website by Andrew Lee</a></p>
</footer>
</div>
)
}
|