\n \n \n \n We are experianced radiologists, and we would like to share our knowledge. Please browse our cases, and contact us if you have any questions.Don`t forget to subscribe!\n
\n \n \n )\n}\n\nconst Wrapper = styled.div`\n text-align: center;\n p {\n color: var(--clr-grey-5);\n }\n .img {\n border-radius: 50%;\n }\n`\nexport default About\n","import React from \"react\"\nimport styled from \"styled-components\"\nimport { graphql, useStaticQuery } from \"gatsby\"\nimport { Link } from \"gatsby\"\nimport Image from \"gatsby-image\"\nimport Title from \"./Title\"\n\nconst query = graphql`\n {\n allMdx(sort: { fields: frontmatter___date, order: DESC }, limit: 5) {\n nodes {\n frontmatter {\n slug\n title\n date(formatString: \"MMMM Do, YYYY\")\n image {\n childImageSharp {\n fluid {\n ...GatsbyImageSharpFluid\n }\n }\n }\n }\n id\n }\n }\n }\n`\n\nconst Recent = () => {\n const data = useStaticQuery(query)\n const {\n allMdx: { nodes: posts },\n } = data\n return (\n