\n \n {this.props.children}\n
\n \n );\n }\n}","import React from \"react\";\nimport { css } from \"@emotion/react\";\nimport { Footer } from \"../components/Footer\";\nimport { TransitionNavigation } from \"../components/header/SiteNav\";\nimport { Wrapper } from \"../components/Wrapper\";\nimport IndexLayout from \"../layouts\";\nimport { graphql } from \"gatsby\";\nimport { Content } from \"../components/body/Body\";\nimport { Helmet } from \"react-helmet\";\n\nexport const pageQuery = graphql`\n query {\n allMarkdownRemark(\n sort: { fields: [frontmatter___date], order: DESC }\n filter: { frontmatter: { layout: { eq: \"feature\" } } }\n ) {\n edges {\n node {\n timeToRead\n frontmatter {\n title\n date\n color\n tags\n draft\n description\n image {\n publicURL\n }\n }\n excerpt\n fields {\n layout\n slug\n }\n }\n }\n }\n }\n`;\n\nexport interface FeaturesProps {\n data: {\n header: {\n childImageSharp: {\n fixed: any;\n };\n };\n allMarkdownRemark: {\n edges: Array<{\n node: any;\n }>;\n };\n };\n}\n\nconst FeatureFeed = css`\n padding: 40px 0 5vw;\n\n display: grid;\n grid-gap: 10px;\n grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));\n`;\n\nexport const FeatureCardStyles = css`\n margin: auto;\n min-height: 220px;\n background-size: cover;\n\n padding: 22px;\n border-radius: 6px;\n background: #fff;\n color: #000;\n\n height: 100%;\n width: 100%;\n\n text-align: center;\n\n :hover,\n :focus {\n box-shadow: 0 4px 13px rgb(0, 0, 0, 0.1);\n text-decoration: none;\n color: #000;\n }\n :active {\n box-shadow: 0 4px 13px rgb(0, 0, 0, 0.15);\n }\n\n img {\n width: 100px;\n height: 100px;\n }\n\n h4 {\n text-align: center;\n font-family: \"Roboto\", sans-serif;\n font-weight: 900;\n }\n`;\n\nconst Features: React.FC