23 lines
595 B
XML
23 lines
595 B
XML
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>
|
|
I'm currently expanding what I want to do with this site.
|
|
Currently a list of available services and servers is available via the respective navbar entry.
|
|
</PageDescription>
|
|
</>
|
|
)
|
|
}
|