Update copyright

This commit is contained in:
Ben Edgington
2022-01-18 12:29:10 +00:00
parent 186ee6e4d7
commit b4208ebf83
2 changed files with 1 additions and 3 deletions

View File

@@ -13,7 +13,6 @@ module.exports = {
title: "Upgrading Ethereum",
description: "A technical handbook on Ethereum's move to proof of stake and beyond",
author: "Ben Edgington",
copyright: "© Copyright 2021 ConsenSys",
gitHash: getGitHash(),
gitUrl: "https://github.com/benjaminion/upgrading-ethereum-book",
licenceUrl: "https://creativecommons.org/licenses/by-sa/4.0/",

View File

@@ -10,7 +10,6 @@ const Footer = () => {
site {
siteMetadata {
author
copyright
gitHash
gitUrl
licenceUrl
@@ -24,7 +23,7 @@ const Footer = () => {
return (
<footer>
<p>Created by {meta.author}. {meta.copyright}. Licensed under <a href={meta.licenceUrl} target="_blank" rel="external noreferrer">{meta.licence}</a>. Commit <a className="githash" href={meta.gitUrl} target="_blank" rel="external noreferrer">{meta.gitHash}</a>.</p>
<p>Created by {meta.author}. Licensed under <a href={meta.licenceUrl} target="_blank" rel="external noreferrer">{meta.licence}</a>. Commit <a className="githash" href={meta.gitUrl} target="_blank" rel="external noreferrer">{meta.gitHash}</a>.</p>
</footer>
)
}