aboutsummaryrefslogtreecommitdiff
path: root/pages/index.js
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2021-02-12 23:35:51 -0500
committerAndrew Lee <alee14498@protonmail.com>2021-02-12 23:35:51 -0500
commitd16550df3d370ce2f2859d72a79c36e8ef0b4a72 (patch)
tree71487288ff93bbc23962412911e8f41635afb877 /pages/index.js
parente85074578519e95bbf1f897ddebb6861cdcd3ee2 (diff)
downloadsnug-cup-d16550df3d370ce2f2859d72a79c36e8ef0b4a72.tar.gz
snug-cup-d16550df3d370ce2f2859d72a79c36e8ef0b4a72.tar.bz2
snug-cup-d16550df3d370ce2f2859d72a79c36e8ef0b4a72.zip
Updated page
Diffstat (limited to 'pages/index.js')
-rw-r--r--pages/index.js19
1 files changed, 14 insertions, 5 deletions
diff --git a/pages/index.js b/pages/index.js
index 96ed50f..d2213bb 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -1,15 +1,24 @@
import Head from 'next/head'
+import styles from '../styles/Home.module.css'
+import Container from '@material-ui/core/Container'
export default function Home() {
return (
- <div>
+ <Container>
<Head>
- <title>Create Next App</title>
+ <title>Snug Cup Inc.</title>
<link rel="icon" href="/favicon.ico" />
</Head>
-
+ <div className={styles.centre}>
+ <img src="/Project.png" height="15%" width="15%"/>
<h1>Welcome to the Snug Cup Inc. website!</h1>
- <p>This website is currently work in progress...</p>
- </div>
+ </div>
+ <h1>Who are we?</h1>
+ <p>We are a company that inovates cups.</p>
+ <footer className={styles.footer}>
+ <p>&copy; Copyright 2021, Snug Cup Inc. All rights reserved.</p>
+ <p>Made in Next.JS & Hosted on Netlify</p>
+ </footer>
+ </Container>
)
}