aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2021-02-14 15:27:29 -0500
committerAndrew Lee <alee14498@protonmail.com>2021-02-14 15:27:29 -0500
commit280185245d19c7c9c02e5c73601e0e54009c6c8e (patch)
tree410ef1ff865ec412dfcee96312b30461c3241834 /pages
parentd16550df3d370ce2f2859d72a79c36e8ef0b4a72 (diff)
downloadsnug-cup-280185245d19c7c9c02e5c73601e0e54009c6c8e.tar.gz
snug-cup-280185245d19c7c9c02e5c73601e0e54009c6c8e.tar.bz2
snug-cup-280185245d19c7c9c02e5c73601e0e54009c6c8e.zip
Added unity project
Diffstat (limited to 'pages')
-rw-r--r--pages/index.js14
1 files changed, 10 insertions, 4 deletions
diff --git a/pages/index.js b/pages/index.js
index d2213bb..d4944c3 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -4,21 +4,27 @@ import Container from '@material-ui/core/Container'
export default function Home() {
return (
- <Container>
+ <div>
<Head>
<title>Snug Cup Inc.</title>
<link rel="icon" href="/favicon.ico" />
</Head>
+ <Container>
<div className={styles.centre}>
- <img src="/Project.png" height="15%" width="15%"/>
- <h1>Welcome to the Snug Cup Inc. website!</h1>
+ <img src="/Project.png" height="15%" width="15%"/>
+ <h1>Welcome to the Snug Cup Inc. website!</h1>
+ <h2>slogan here</h2>
+ <a href="unity/index.html">Unity Demo</a>
+ <br/>
+ <img src="/snug_cup.png" width="50%" height="50%"/>
</div>
<h1>Who are we?</h1>
<p>We are a company that inovates cups.</p>
+ </Container>
<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>
+ </div>
)
}