aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/index.tsx
blob: db1eba20fcb455449039a1b89c05f6ae39ceacbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import * as React from "react"
import type { HeadFC, PageProps } from "gatsby"

import PageLayout, { generateHeader } from "../layout/page";


const IndexPage: React.FC<PageProps> = () => {
  return (
    <PageLayout header="Available Services" subheader="Below are all the internal services for Python Discord">
      <main>
      </main>
    </PageLayout>
  )
}

export default IndexPage

export const Head: HeadFC = generateHeader("PyDis Ops", "Internal services for Python Discord.");