Skip to content

Commit

Permalink
#38 removing comments for about page
Browse files Browse the repository at this point in the history
  • Loading branch information
samgildea committed May 1, 2021
1 parent ef9a522 commit 93b8535
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/pages/about.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
// import { graphql } from "gatsby"
import { graphql } from "gatsby"

// import React from "react"
// import Layout from "../components/layout"
import React from "react"
import Layout from "../components/layout"

// export default function About({ data }) {
// const aboutData = data.prismicAboutPage.data
export default function About({ data }) {
const aboutData = data.prismicAboutPage.data

// return (
// <Layout>
// <h1>{aboutData.company_background_section_heading}</h1>
// </Layout>
// )
// }
return (
<Layout>
<h1>{aboutData.company_background_section_heading}</h1>
</Layout>
)
}

export const query = graphql`
query AboutQuery {
Expand Down

0 comments on commit 93b8535

Please sign in to comment.