aboutsummaryrefslogtreecommitdiff
path: root/pages/index.js
blob: a2b6035f6c763d65df35aff90043845b3a706486 (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
35
36
37
38
39
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>
      <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 Snug Cup!</h1>
        <h2>slogan here</h2>
        <br/>
        <h2>Render</h2>
        <img src="/snug_cup.png" width="50%" height="50%" />
        <h2>Colour palette</h2>
        <img src="/palette.png" width="40%" height="40%" />
     </div>
     <h1>Who are we?</h1>
     <p>We are a company that inovates cups.</p>
     <h1>Team</h1>
     <ul>
       <li>Andrew Lee</li>
       <li>Angelo Ching</li>
       <li>Cleopatra Protopapadakis</li>
       <li>Mehar Ahmad</li>
     </ul>
    </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>
    </div>
  )
}