import React from "react" import { useStaticQuery, graphql } from "gatsby" import Img from "gatsby-image" const Logo = () => { const data = useStaticQuery(graphql` query { placeholderImage: file(relativePath: { eq: "lekol-plus-Logo.png" }) { childImageSharp { fluid(maxWidth: 300) { ...GatsbyImageSharpFluid } } } } `) return ( ) } export default Logo