aboutsummaryrefslogtreecommitdiff
path: root/pages/index.js
blob: d2213bb8e66249257517cd3be5ff9f55e2782f9d (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
import Head from 'next/head'
import styles from '../styles/Home.module.css'
import Container from '@material-ui/core/Container'

export default function Home() {
  return (
    <Container>
      <Head>
        <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>
     </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>
  )
}