hooks#useSiteMetadata JavaScript Examples

The following examples show how to use hooks#useSiteMetadata. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Footer.js    From gatsby-starter-takeshape-startup with MIT License 6 votes vote down vote up
Footer = () => {
  const { authorName, authorUrl } = useSiteMetadata();
  return (
    <footer className="page-footer">
      <Container>
        <small>&copy; {new Date().getFullYear()} <a href={authorUrl} rel="nofollow">{ authorName }</a></small>
      </Container>
    </footer>
  );
}
Example #2
Source File: Header.js    From gatsby-starter-takeshape-startup with MIT License 6 votes vote down vote up
Header = () => {
  const { companyName } = useSiteMetadata();
  return (
    <header className="page-header">
      <nav>
        <Link to="/">
          <img src={ logo } alt={`${companyName} Logo`} />
        </Link>
      </nav>
    </header>
  );
}