Website/pages/index.js

18 lines
346 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-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-11-01 11:36:45 +00:00
<title>TheRed.TK</title>
2021-10-24 17:04:22 +00:00
</Head>
2021-11-01 11:36:45 +00:00
<div className={styles.Home}>
<Content />
</div>
</>
2021-10-24 17:04:22 +00:00
)
}