main-site/pages/index.tsx
Neshura 21e613891e
Added styled-components + various
Includes changes due to NextJS version bump and attempts at storing theme via cookie
2022-12-14 19:35:27 +01:00

39 lines
1 KiB
TypeScript

import Head from 'next/head'
import Link from 'next/link'
import styles from '/styles/Home.module.css'
export default function Home() {
return (
<>
<Head>
<title>Neshweb - Home</title>
<meta charSet='utf-8' />
<link rel="icon" href="/favicon.ico" />
</Head>
<h1 className={styles.title}>
Welcome to my Servers Webpage
</h1>
<p className={styles.description}>
Feel free to look around
</p>
<div className={styles.grid}>
<Link className={styles.card} key="about" href="/about">
<h2>About &rarr;</h2>
<p>Useless Info, don&apos;t bother</p>
</Link>
<Link className={styles.card} key="servers" href="/games">
<h2>Games &rarr;</h2>
<p>List of all available Servers</p>
</Link>
<Link className={styles.card} key="services" href="/services">
<h2>Services &rarr;</h2>
<p>List of available Services</p>
</Link>
</div>
</>
)
}