import { graphql } from "gatsby" import React, { Fragment } from "react" import cx from "classnames" import { Mdx } from "../../generated/graphql" import { ComponentQuery } from "../../typings" import { Markdown } from "../components/Markdown" import { SEO } from "../components/SEO" import { PageContent } from "../components/PageContent" import { HeaderBarebone } from "../components/HeaderBarebone" import { buildToc } from "../utils" function FaqPage({ data }: ComponentQuery<{ md: Mdx }>) { const { md } = data const toc = buildToc(md.headings!) return ( } toc={toc} /> ) } export const query = graphql` query FaqPage { md: mdx(frontmatter: { path: { eq: "/faq" } }) { body headings { depth value } } } ` export default FaqPage