pure/site/components/Footer.js
2022-01-27 09:10:41 -08:00

29 lines
1.2 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react';
function Footer({ siteConfig }) {
const { customFields, organizationName } = siteConfig;
return (
<div className="footer">
<div className="legal pure-g">
<div className="pure-u-1 u-sm-1-2">
<p className="legal-license">
This site is built with using Pure v{customFields.pureVersion}<br />
All code on this site is licensed under the <a href={`https://github.com/${organizationName}/${customFields.repoName}/blob/master/LICENSE`}>Yahoo BSD License</a> unless otherwise stated.
</p>
</div>
<div className="pure-u-1 u-sm-1-2">
<ul className="legal-links">
<li><a href={`https://github.com/${organizationName}/${customFields.repoName}/`}>GitHub Project</a></li>
<li><a href="https://hackerone.com/yahoo/">Security Contact Info</a></li>
</ul>
<p className="legal-copyright">
&copy; 2014 - Present Yahoo Inc. All rights reserved.
</p>
</div>
</div>
</div>
);
}
export default Footer;