/** @jsx jsx */ import { jsx } from "theme-ui" import * as React from "react" import type { HeadFC, PageProps } from "gatsby" import Layout from "./layout" import Seo from "./seo" export type JodiePageProps = { page: { title: string slug: string excerpt: string color: string custom: boolean cover: { childImageSharp: { resize: { src: string } } } } } const Page: React.FC>> = ({ data: { page }, children }) => (
{children}
) export default Page export const Head: HeadFC = ({ data: { page }, location }) => ( )