Website/pages/index.js

26 lines
747 B
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-10-24 17:04:22 +00:00
export default function Home() {
return (
2021-11-01 11:36:45 +00:00
<>
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 />
<Sticker style={{top: '80px', right: '20px'}}>Hello there! This is a sticker!<br/>Here, you can stick anything!<br/>This works pretty well imo<br/></Sticker>
2021-11-01 11:36:45 +00:00
</>
2021-10-24 17:04:22 +00:00
)
}