diff --git a/src/components/UI/downloads/DownloadsHero.tsx b/src/components/UI/downloads/DownloadsHero.tsx index 4b492b5f55..94dc1200f7 100644 --- a/src/components/UI/downloads/DownloadsHero.tsx +++ b/src/components/UI/downloads/DownloadsHero.tsx @@ -148,14 +148,7 @@ export const DownloadsHero: FC = ({ Release notes for {currentBuildName} {currentBuildVersion} diff --git a/src/components/UI/downloads/DownloadsSection.tsx b/src/components/UI/downloads/DownloadsSection.tsx index aea02d3973..b3b647597d 100644 --- a/src/components/UI/downloads/DownloadsSection.tsx +++ b/src/components/UI/downloads/DownloadsSection.tsx @@ -3,6 +3,7 @@ import { FC } from 'react'; interface Props { children?: React.ReactNode; + id: string; imgSrc?: string; imgAltText?: string; sectionTitle: string @@ -13,9 +14,10 @@ export const DownloadsSection: FC = ({ imgSrc, imgAltText, sectionTitle, + id }) => { return ( - + {!!imgSrc && ( {/* TODO: use NextImage */} diff --git a/src/components/UI/downloads/DownloadsTable.tsx b/src/components/UI/downloads/DownloadsTable.tsx index 97b4d4c74e..7caa073009 100644 --- a/src/components/UI/downloads/DownloadsTable.tsx +++ b/src/components/UI/downloads/DownloadsTable.tsx @@ -19,7 +19,11 @@ export const DownloadsTable: FC = ({ data }) => { return ( - + { imgSrc='/images/pages/gopher-home-side-desktop.svg' imgAltText='Gopher facing right' sectionTitle='Specific Versions' + id='specificversions' > @@ -72,16 +72,8 @@ const DownloadsPage: NextPage = ({}) => { Please select your desired platform from the lists below and download your bundle of choice. Please be aware that the MD5 checksums are provided by our binary hosting platform (Azure Blobstore) to help check for download errors. For security guarantees please verify any downloads via the attached PGP signature files (see{' '} OpenPGP {' '} @@ -90,21 +82,14 @@ const DownloadsPage: NextPage = ({}) => { - - + + These are the current and previous stable releases of go-ethereum, updated automatically when a new version is tagged in our{' '} GitHub repository. @@ -130,21 +115,14 @@ const DownloadsPage: NextPage = ({}) => { - - + + These are the develop snapshots of go-ethereum, updated automatically when a new commit is pushed into our{' '} GitHub repository. @@ -170,8 +148,8 @@ const DownloadsPage: NextPage = ({}) => { - - + + All the binaries available from this page are signed via our build server PGP keys: @@ -189,8 +167,8 @@ const DownloadsPage: NextPage = ({}) => { */} - - + + You can import the build server public keys by grabbing the individual keys directly from the keyserver network: @@ -201,7 +179,7 @@ const DownloadsPage: NextPage = ({}) => { - + Similarly you can import all the developer public keys by grabbing them directly from the keyserver network: diff --git a/src/theme/components/Link.ts b/src/theme/components/Link.ts index 2e747c4324..bffc9dd76d 100644 --- a/src/theme/components/Link.ts +++ b/src/theme/components/Link.ts @@ -11,6 +11,22 @@ export const Link = { boxShadow: 'inset 0 0 0 3px #f0f2e2 !important' }, _active: { textDecoration: 'none', bg: 'brand.light.secondary', color: 'yellow.50' } + }, + href: { + color: 'brand.light.primary', + _hover: { + color: 'brand.light.body', + textDecorationColor: 'brand.light.body' + }, + _focus: { + color: 'brand.light.primary', + boxShadow: 'linkBoxShadow', + textDecoration: 'none' + }, + _pressed: { + color: 'brand.light.secondary', + textDecorationColor: 'brand.light.secondary' + } } } };