2022-12-03 20:02:13 +00:00
|
|
|
import Head from 'next/head'
|
2022-12-15 22:20:26 +00:00
|
|
|
import Link from 'next/link';
|
2022-12-18 04:01:10 +00:00
|
|
|
import { PageTitle, PageDescription, PageContentBox, PageCard, CardLink } from '../components/styles/content';
|
2022-12-03 20:02:13 +00:00
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Head>
|
2022-12-15 22:20:26 +00:00
|
|
|
<title>Neshweb - Home</title>
|
2022-12-03 20:02:13 +00:00
|
|
|
<meta charSet='utf-8' />
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
</Head>
|
2022-12-15 22:20:26 +00:00
|
|
|
<PageTitle>
|
2022-12-03 20:02:13 +00:00
|
|
|
Welcome to my Servers Webpage
|
2022-12-15 22:20:26 +00:00
|
|
|
</PageTitle>
|
2022-12-03 20:02:13 +00:00
|
|
|
|
2022-12-15 22:20:26 +00:00
|
|
|
<PageDescription>
|
2022-12-03 20:02:13 +00:00
|
|
|
Feel free to look around
|
2022-12-15 22:20:26 +00:00
|
|
|
</PageDescription>
|
|
|
|
<PageContentBox>
|
2022-12-18 04:01:10 +00:00
|
|
|
<CardLink key="about" href="/about">
|
|
|
|
<PageCard>
|
2022-12-15 22:20:26 +00:00
|
|
|
<h2>About →</h2>
|
|
|
|
<p>Useless Info, don't bother</p>
|
2022-12-18 04:01:10 +00:00
|
|
|
</PageCard>
|
|
|
|
</CardLink>
|
2022-12-03 20:02:13 +00:00
|
|
|
|
2022-12-18 04:01:10 +00:00
|
|
|
<CardLink key="servers" href="/games">
|
|
|
|
<PageCard>
|
2022-12-15 22:20:26 +00:00
|
|
|
<h2>Games →</h2>
|
|
|
|
<p>List of all available Servers</p>
|
2022-12-18 04:01:10 +00:00
|
|
|
</PageCard>
|
|
|
|
</CardLink>
|
2022-12-03 20:02:13 +00:00
|
|
|
|
2022-12-18 04:01:10 +00:00
|
|
|
<CardLink key="services" href="/services">
|
|
|
|
<PageCard>
|
2022-12-15 22:20:26 +00:00
|
|
|
<h2>Services →</h2>
|
|
|
|
<p>List of available Services</p>
|
2022-12-18 04:01:10 +00:00
|
|
|
</PageCard>
|
|
|
|
</CardLink>
|
2022-12-15 22:20:26 +00:00
|
|
|
</PageContentBox>
|
2022-12-03 20:02:13 +00:00
|
|
|
</>
|
|
|
|
)
|
2022-12-14 18:35:27 +00:00
|
|
|
}
|