main-site/pages/about.tsx

23 lines
595 B
TypeScript
Raw Normal View History

2022-12-03 20:02:13 +00:00
import Head from 'next/head'
import { PageDescription, PageTitle } from '../components/styles/content'
2022-12-03 20:02:13 +00:00
export default function About() {
return (
<>
<Head>
<title>Neshweb - About</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
About
</PageTitle>
<PageDescription>
I&apos;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>
2022-12-03 20:02:13 +00:00
</>
)
}