Website/pages/index.js

29 lines
1 KiB
JavaScript
Raw Normal View History

2021-10-24 17:04:22 +00:00
import Head from 'next/head'
import Image from 'next/image'
import styles from '../styles/Home.module.css'
2021-11-01 11:36:45 +00:00
import Content from '../components/content'
2021-12-21 19:08:36 +00:00
import Navbar from '../components/navbar'
import TrianglesBG from '../components/trianglesbg'
import Alert from '../components/alert'
import Sticker from '../components/sticker'
2021-12-21 22:42:34 +00:00
import Textbox from '../components/textbox'
2021-10-24 17:04:22 +00:00
export default function Home() {
return (
2021-11-01 11:36:45 +00:00
<>
<script src='/scripts/bg.js' defer></script>
2021-10-24 17:04:22 +00:00
<Head>
2021-12-21 19:08:36 +00:00
<title>TheRed.SH / Home</title>
2021-10-24 17:04:22 +00:00
</Head>
2021-12-21 19:08:36 +00:00
<Navbar/>
2021-11-01 11:36:45 +00:00
<div className={styles.Home}>
<Content />
</div>
2021-12-21 19:08:36 +00:00
<TrianglesBG />
<Alert />
2021-12-21 22:42:34 +00:00
<Sticker style={{top: '80px', right: '20px'}}>Hello there! I'm a sticker!<br/>This is just a simple demo.<br/>A much more finished website will be coming soon!</Sticker>
<Textbox width="50vw" placeholder="Send anything to me here! (Currently not working)" style={{margin: 'auto', marginTop: '30px', display: 'block', marginBottom: '60px'}}/>
2021-11-01 11:36:45 +00:00
</>
2021-10-24 17:04:22 +00:00
)
}