Skip to content

Commit fa3727c

Browse files
committed
add accessibility page
1 parent dca9fe8 commit fa3727c

2 files changed

Lines changed: 53 additions & 0 deletions

File tree

src/data/footer-items.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export const footerItems = {
1313
label: 'Brand Assets',
1414
href: 'https://github.com/OceanParcels/oceanparcels_website/tree/main/public/parcels-assets',
1515
},
16+
{ label: 'Accessibility', href: '/accessibility' },
1617
],
1718

1819
resources: [

src/pages/accessibility.js

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
import { Layout } from '@/components/layout'
2+
import { Image, Link } from '@/components/mdx'
3+
import { Box, Container, Heading, SimpleGrid, Text } from '@chakra-ui/react'
4+
5+
const Accessibility = () => {
6+
return (
7+
<Layout
8+
title={'Accessibility'}
9+
card={
10+
'https://raw.githubusercontent.com/OceanParcels/oceanparcels_website/main/public/parcels-assets/logo-no-text.png'
11+
}
12+
url={`/accessibility`}
13+
>
14+
<Box as='section' py={20}>
15+
<Container maxW='container.lg'>
16+
<Heading as='h1' size='2xl' textAlign={'center'}>
17+
Accessibility
18+
</Heading>
19+
20+
<Box py={4}>
21+
<Text>
22+
We are committed to making our website accessible to all users.
23+
Our website has been assessed using the{' '}
24+
<Link
25+
href='https://wave.webaim.org/extension/'
26+
color='blue.500'
27+
isExternal
28+
>
29+
WAVE (Web Accessibility Evaluation Tool)
30+
</Link>{' '}
31+
and has been found to have good accessibility features, including
32+
appropriate color contrast ratios and ARIA (Accessible Rich
33+
Internet Applications) support. We continuously monitor and
34+
improve accessibility to ensure all users can access our content
35+
effectively. Please contact{' '}
36+
<Link
37+
href={'https://www.uu.nl/staff/EvanSebille'}
38+
color='blue.500'
39+
isExternal
40+
>
41+
Erik van Sebille
42+
</Link>{' '}
43+
if you have any feedback or suggestions for improvement.
44+
</Text>
45+
</Box>
46+
</Container>
47+
</Box>
48+
</Layout>
49+
)
50+
}
51+
52+
export default Accessibility

0 commit comments

Comments
 (0)