Add missing alt text

This commit is contained in:
Lucas Phang 2021-05-07 14:08:37 +10:00
parent c9ab00975c
commit c36d0e27da
5 changed files with 14 additions and 2 deletions

View file

@ -9,6 +9,7 @@ export function HomeHero() {
}}
className="absolute bottom-0 left-0 object-cover h-full transform"
src="/hero.svg"
alt="Hero Landing Page, depicting the integration of privacy and technology"
/>
);
}

View file

@ -38,6 +38,7 @@ export function ArticleCardFeature(props: IPost) {
<img
className="object-cover"
src={`${featureImage?.imageUrl}?w=600`}
alt={featureImage?.description}
/>
</div>
</div>

View file

@ -89,7 +89,11 @@ export function SideMenuInner() {
rel="nofollow"
className="flex items-center mx-2 space-x-1 font-bold hover:underline"
>
<img className="h-5" src="/img/coinmarketcap.png" />
<img
className="h-5"
src="/img/coinmarketcap.png"
alt="CoinMarketCap Logo"
/>
<span>CMC</span>
</a>
<a
@ -98,7 +102,11 @@ export function SideMenuInner() {
rel="nofollow"
className="flex items-center mx-2 space-x-1 font-bold hover:underline"
>
<img className="h-5" src="/img/coingecko.png" />
<img
className="h-5"
src="/img/coingecko.png"
alt="CoinGecko Logo"
/>
<span>CoinGecko</span>
</a>
</div>

View file

@ -118,6 +118,7 @@ function Page({
style={{ maxHeight: '33vh' }}
src={page?.hero?.imageUrl}
className="object-contain w-full"
alt={page?.hero?.description ?? pageTitle}
/>
</div>

View file

@ -55,6 +55,7 @@ function Roadmap() {
<img
style={{ maxHeight: '90%' }}
src={`img/roadmap-${horizontal ? 'x' : 'y'}.png`}
alt="Oxen's Roadmap and Plans for the future."
className="w-full"
/>
</div>