-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathfunders.js
More file actions
57 lines (53 loc) · 1.33 KB
/
funders.js
File metadata and controls
57 lines (53 loc) · 1.33 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
import {
Box,
Container,
Image,
Text,
UnorderedList,
ListItem,
Link,
SimpleGrid,
Flex,
} 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>
<SimpleGrid
columns={{ base: 1, sm: 2, md: 2, lg: 4 }}
my={4}
spacing={'space-between'}
align={'center'}
justify={'center'}
>
{funders.map((funders, index) => (
<Flex
as={Link}
href={funders.url}
key={index}
w={64}
align={'center'}
justify={'center'}
rounded={'full'}
>
<Image maxH={20} src={funders.logo} alt={funders.name} />
</Flex>
))}
</SimpleGrid>
</Box>
</Container>
</Box>
)
}