This repository was archived by the owner on Apr 19, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,12 @@ const StyledBg = styled.img`
17
17
18
18
interface BgProps {
19
19
url : any
20
+ alt : string
20
21
}
21
22
22
- const Bg : React . SFC < BgProps > = ( { url} ) => (
23
+ const Bg = ( { url, alt } : BgProps ) => (
23
24
< div className = "row" >
24
- < StyledBg src = { url } aria-hidden = "true" />
25
+ < StyledBg src = { url } alt = { alt } />
25
26
</ div >
26
27
)
27
28
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ const EducationPage: React.SFC<{}> = () => (
52
52
title = "We eliminate tedious workflows."
53
53
/>
54
54
55
- < Bg url = { CollegeStudents } />
55
+ < Bg url = { CollegeStudents } alt = "Students going to the college" />
56
56
57
57
< PricingTable
58
58
title = "Gitpod Education Pricing"
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ const RecrutingPage: React.SFC<{}> = () => (
47
47
title = "We create the most convenient dev environments."
48
48
/>
49
49
50
- < Bg url = { RecruitingBG } />
50
+ < Bg url = { RecruitingBG } alt = "A road on Mountains with trees on either side." />
51
51
52
52
< PricingTable
53
53
title = "Gitpod Recruiting Pricing"
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ const VendorPage: React.SFC<{}> = () => (
47
47
title = "We’ll make your developer products shine."
48
48
/>
49
49
50
- < Bg url = { VendorBG } />
50
+ < Bg url = { VendorBG } alt = "A large hall with paintings embeded on it's walls." />
51
51
52
52
< PricingTable
53
53
title = "Gitpod Vendor Pricing"
You can’t perform that action at this time.
0 commit comments