import { useStaticQuery, graphql } from 'gatsby' const query = graphql` query Meta { metaYaml { description img { childImageSharp { resize(width: 980) { src } } } availability { status available unavailable } gpg addressbook typekitID matomoUrl matomoSite allowedHosts } } ` export const useMeta = () => { const { metaYaml } = useStaticQuery(query) return metaYaml }