main-site/pages/index.tsx

44 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-12-03 20:02:13 +00:00
import Head from 'next/head'
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>
<title>Neshweb - Home</title>
2022-12-03 20:02:13 +00:00
<meta charSet='utf-8' />
<link rel="icon" href="/favicon.ico" />
</Head>
<PageTitle>
2022-12-03 20:02:13 +00:00
Welcome to my Servers Webpage
</PageTitle>
2022-12-03 20:02:13 +00:00
<PageDescription>
2022-12-03 20:02:13 +00:00
Feel free to look around
</PageDescription>
<PageContentBox>
2022-12-18 04:01:10 +00:00
<CardLink key="about" href="/about">
<PageCard>
<h2>About &rarr;</h2>
<p>Useless Info, don&apos;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>
<h2>Games &rarr;</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>
<h2>Services &rarr;</h2>
<p>List of available Services</p>
2022-12-18 04:01:10 +00:00
</PageCard>
</CardLink>
</PageContentBox>
2022-12-03 20:02:13 +00:00
</>
)
}