diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2021-02-23 13:06:49 +0000 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2021-02-23 13:06:49 +0000 |
| commit | 2478b6dd7abcd450bb21d7a705d8747f53c68f51 (patch) | |
| tree | 99126f950764e4927d99eafaacb797b8aee2c417 /pages | |
| parent | 2d7aaec4b03fe223930581c704ec89496c99e26f (diff) | |
| download | snug-cup-2478b6dd7abcd450bb21d7a705d8747f53c68f51.tar.gz snug-cup-2478b6dd7abcd450bb21d7a705d8747f53c68f51.tar.bz2 snug-cup-2478b6dd7abcd450bb21d7a705d8747f53c68f51.zip | |
eslinted index
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/_app.js | 4 | ||||
| -rw-r--r-- | pages/index.js | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/pages/_app.js b/pages/_app.js index 6aa2199..7017746 100644 --- a/pages/_app.js +++ b/pages/_app.js @@ -1,7 +1,7 @@ import '../styles/globals.css' -function MyApp({ Component, pageProps }) { +function MyApp ({ Component, pageProps }) { return <Component {...pageProps} /> } -export default MyApp
\ No newline at end of file +export default MyApp diff --git a/pages/index.js b/pages/index.js index cf9748c..2f7f9db 100644 --- a/pages/index.js +++ b/pages/index.js @@ -2,7 +2,7 @@ import Head from 'next/head' import styles from '../styles/Home.module.css' import Container from '@material-ui/core/Container' -export default function Home() { +export default function Home () { return ( <div> <Head> @@ -18,7 +18,7 @@ export default function Home() { <img src="/snug_cup.png" width="50%" height="50%" /> <img src="/snug_cup_diagram.png" width="50%" height="50%" /> <h2>Cup Demo</h2> - <iframe width="560" height="315" src="https://www.youtube.com/embed/W7Vau2PgaH0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="true"></iframe> <h2>Colour palette</h2> + <iframe width="560" height="315" src="https://www.youtube.com/embed/W7Vau2PgaH0" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen="true"></iframe> <h2>Colour palette</h2> <img src="/palette.png" width="40%" height="40%" /> <h2>Price</h2> <p>Snug Cup: $25</p> |
