22 lines
493 B
TypeScript
22 lines
493 B
TypeScript
import Head from 'next/head'
|
|
import { PageDescription, PageTitle } from '../components/styles/content'
|
|
|
|
export default function About() {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Neshweb - About</title>
|
|
<meta charSet='utf-8' />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
|
|
<PageTitle>
|
|
About
|
|
</PageTitle>
|
|
<PageDescription>
|
|
This website is primarily for managing my game servers in one spot
|
|
</PageDescription>
|
|
</>
|
|
)
|
|
}
|