import React from 'react'; import { Helmet } from 'react-helmet'; import { graphql } from 'gatsby'; import Layout from '../components/layout'; import Community from '../components/community'; function CommunityPage({ data }) { const { title, headline, subhead, sections } = data.markdownRemark.frontmatter; return ( ); } export const pageQuery = graphql` query communityPage { markdownRemark(fileAbsolutePath: { regex: "/community/" }) { frontmatter { title headline subhead sections { title channels { title description url } } } } } `; export default CommunityPage;