aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
Diffstat (limited to 'pages')
-rw-r--r--pages/_app.js7
-rw-r--r--pages/index.js19
2 files changed, 21 insertions, 5 deletions
diff --git a/pages/_app.js b/pages/_app.js
new file mode 100644
index 0000000..6aa2199
--- /dev/null
+++ b/pages/_app.js
@@ -0,0 +1,7 @@
+import '../styles/globals.css'
+
+function MyApp({ Component, pageProps }) {
+ return <Component {...pageProps} />
+}
+
+export default MyApp \ No newline at end of file
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>
)
}