-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathfunders.js
More file actions
59 lines (55 loc) · 1.49 KB
/
funders.js
File metadata and controls
59 lines (55 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import {
Box,
Container,
Image,
Text,
Link,
Grid,
GridItem,
Tooltip,
} from '@chakra-ui/react'
import React from 'react'
import { Funders as data } from '@/data/funders'
import { Heading } from '@/components/mdx'
export const Funders = () => {
const funders = React.useMemo(() => data, [])
return (
<Box id={'funders'} as='section'>
<Container maxW='container.lg' centerContent>
<Heading as='h1' size='2xl'>
Funders
</Heading>
<Box my={8}>
<Text fontSize={'lg'}>
Parcels development has been supported by the following
organisations:
</Text>
<Grid
templateColumns={`repeat(${funders.length}, minmax(auto, max-content))`}
gap={6}
my={4}
justifyContent='center'
>
{funders.map((funder, index) => (
<Tooltip key={index} label={funder.name}>
<GridItem
as={Link}
href={funder.url}
display='flex'
alignItems='center'
justifyContent='center'
borderRight={
index < funders.length - 1 ? '1px solid #ccc' : 'none'
}
pr={4}
>
<Image maxH={20} src={funder.logo} alt={funder.name} />
</GridItem>
</Tooltip>
))}
</Grid>
</Box>
</Container>
</Box>
)
}