Skip to content
Snippets Groups Projects
Commit ab15a548 authored by Bjarke Madsen's avatar Bjarke Madsen
Browse files

Add alt to images

parent e77ed4ee
Branches
Tags
No related merge requests found
...@@ -22,7 +22,7 @@ function Banner({ children, type }: inputProps): ReactElement { ...@@ -22,7 +22,7 @@ function Banner({ children, type }: inputProps): ReactElement {
<Row> <Row>
<Row> <Row>
<div className="section-container"> <div className="section-container">
<img src={SectionDataLogo} style={{ maxWidth: '7rem', marginBottom: '1rem' }} /> <img src={SectionDataLogo} style={{ maxWidth: '7rem', marginBottom: '1rem' }} alt="Compendium Data logo" />
<div style={{ display: "flex", alignSelf: "right" }}> <div style={{ display: "flex", alignSelf: "right" }}>
<div className="center-text" style={{ paddingTop: '1rem' }}> <div className="center-text" style={{ paddingTop: '1rem' }}>
{children} {children}
......
...@@ -17,7 +17,7 @@ function ExternalPageNavBar(): ReactElement { ...@@ -17,7 +17,7 @@ function ExternalPageNavBar(): ReactElement {
<Col xs={10}> <Col xs={10}>
<div className="nav-wrapper"> <div className="nav-wrapper">
<nav className="header-nav"> <nav className="header-nav">
<a href="https://geant.org/"><img src={GeantLogo} /></a> <a href="https://geant.org/"><img src={GeantLogo} alt="GÉANT Logo" /></a>
<ul> <ul>
<li><a className="nav-link-entry" href="https://network.geant.org/">NETWORK</a></li> <li><a className="nav-link-entry" href="https://network.geant.org/">NETWORK</a></li>
......
...@@ -11,9 +11,9 @@ function GeantFooter(): ReactElement { ...@@ -11,9 +11,9 @@ function GeantFooter(): ReactElement {
<Row> <Row>
<Col> <Col>
<a href="https://geant.org"> <a href="https://geant.org">
<img src={GeantLogo} className="m-3" style={{ maxWidth: "100px" }} /> <img src={GeantLogo} className="m-3" style={{ maxWidth: "100px" }} alt="GÉANT Logo" />
</a> </a>
<img src={EULogo} className="m-3" style={{ maxWidth: "200px" }} /> <img src={EULogo} className="m-3" style={{ maxWidth: "200px" }} alt="European Union Flag" />
</Col> </Col>
<Col className="mt-4 text-end"> <Col className="mt-4 text-end">
<span> <span>
......
...@@ -16,7 +16,7 @@ function SectionLink({ section }: inputProps): ReactElement { ...@@ -16,7 +16,7 @@ function SectionLink({ section }: inputProps): ReactElement {
</div> </div>
<img src={SectionDataLogo} style={{ maxWidth: "4rem" }} /> <img src={SectionDataLogo} style={{ maxWidth: "4rem" }} alt="Compendium Data logo" />
</div> </div>
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment