main-site/pages/about.tsx

22 lines
493 B
TypeScript
Raw Permalink 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>
2022-12-03 20:02:13 +00:00
This website is primarily for managing my game servers in one spot
</PageDescription>
2022-12-03 20:02:13 +00:00
</>
)
}