Skip to content

Commit a7575bc

Browse files
committed
conf page path
Signed-off-by: Tuval <tuval.simha@gmail.com>
1 parent d68214c commit a7575bc

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/pages/conf.tsx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import React from "react"
2+
import type { PageProps } from "gatsby"
3+
import Layout from "../components/Layout"
4+
import Seo from "../components/Seo"
5+
6+
export default ({ pageContext }: PageProps<{}, { sourcePath: string }>) => {
7+
return (
8+
<Layout pageContext={pageContext} className="brand">
9+
Conf info here
10+
</Layout>
11+
)
12+
}
13+
14+
export function Head() {
15+
return <Seo title="GraphQLConf" />
16+
}

0 commit comments

Comments
 (0)