diff --git a/site/src/components/footer.js b/site/src/components/footer.js index 73a1c8b..90be795 100644 --- a/site/src/components/footer.js +++ b/site/src/components/footer.js @@ -1,7 +1,18 @@ import React from "react"; import { Link } from "gatsby"; +import { useStaticQuery, graphql } from "gatsby"; export default function footer() { + const data = useStaticQuery(graphql` + query FooterQuery { + site { + siteMetadata { + title + } + } + } + `); + return (