2022-12-03 20:02:13 +00:00
|
|
|
import Head from 'next/head'
|
2022-12-15 22:20:26 +00:00
|
|
|
import { PageDescription, PageTitle } from '../components/styles/content'
|
2022-12-03 20:02:13 +00:00
|
|
|
|
|
|
|
export default function About() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Head>
|
2022-12-15 22:20:26 +00:00
|
|
|
<title>Neshweb - About</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
|
|
|
About
|
2022-12-15 22:20:26 +00:00
|
|
|
</PageTitle>
|
|
|
|
<PageDescription>
|
2023-03-14 20:21:40 +00:00
|
|
|
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.
|
2022-12-15 22:20:26 +00:00
|
|
|
</PageDescription>
|
2022-12-03 20:02:13 +00:00
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|