Skip to content

Commit bcddf73

Browse files
committed
sponsor section
1 parent f93d527 commit bcddf73

File tree

3 files changed

+101
-0
lines changed

3 files changed

+101
-0
lines changed

pages/index.tsx

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
Button,
88
Link,
99
useColorMode,
10+
Center,
1011
} from '@chakra-ui/core';
1112
import { GetRoadmapsResponse } from '../api/roadmaps';
1213
import { Text } from '../components';
@@ -205,6 +206,105 @@ const Home: React.FC<Props> = ({ roadmaps }) => {
205206
</Flex>
206207
</Flex>
207208
</Flex>
209+
<Flex
210+
w="100%"
211+
h="90vh"
212+
justifyContent="flex-end"
213+
p="3rem"
214+
flexWrap="wrap"
215+
>
216+
<Center
217+
width={['100%', '33.3%', '33.3%', '33.3%', '33.3%']}
218+
flexDirection="column"
219+
>
220+
<Text
221+
color={colorMode === 'light' ? 'gray.800' : 'gray.300'}
222+
fontFamily="Poppins"
223+
fontWeight="700"
224+
fontSize={['1.2rem', '1.2rem', '2rem', '2.4rem', '2.8rem']}
225+
mb="1.5rem"
226+
>
227+
Nuestros sponsors <span style={{ color: '#f26840' }}>.</span>
228+
</Text>
229+
230+
<Image
231+
src="foxbox.jpg"
232+
alt="fox-box"
233+
w="7rem"
234+
h="7rem"
235+
margin="0.8rem"
236+
borderRadius="0.4rem"
237+
style={{ opacity: 0.5 }}
238+
_hover={{ opacity: 1 }}
239+
/>
240+
<Link href="https://foxbox.com/">
241+
<Text
242+
_hover={{ color: '#f26840' }}
243+
color="#f26840"
244+
fontFamily="Public Sans"
245+
fontSize={['0.9rem', '0.9rem', '1rem', '1rem', '1.4rem']}
246+
>
247+
fox-box digital
248+
</Text>
249+
</Link>
250+
</Center>
251+
<Flex
252+
w={['100%', '33.3%', '33.3%', '33.3%', '33.3%']}
253+
alignItems="flex-end"
254+
justifyContent="flex-end"
255+
>
256+
<Flex
257+
borderWidth="0.1rem"
258+
borderColor="#f26840"
259+
borderRadius="0.2rem"
260+
flexDirection="column"
261+
p="1rem"
262+
alignItems="center"
263+
w={['100%', '17rem', '17rem', '17rem', '20rem']}
264+
h={['16rem', '19rem', '19rem', '19rem', '22rem']}
265+
>
266+
<Text
267+
color="#f26840"
268+
fontFamily="Poppins"
269+
fontWeight="700"
270+
textAlign="center"
271+
fontSize={['1.1rem', '1.1rem', '1.2rem', '1.2rem', '1.5rem']}
272+
>
273+
Convertite en Sponsor
274+
</Text>
275+
<Text
276+
color={colorMode === 'light' ? 'gray.800' : 'gray.300'}
277+
fontFamily="Public Sans"
278+
fontSize={['0.9rem', '0.9rem', '1rem', '1rem', '1.4rem']}
279+
textAlign="center"
280+
>
281+
y ayudanos a ayudar a cada vez mas devs
282+
<span style={{ color: '#f26840' }}>.</span>
283+
</Text>
284+
<Link
285+
width={['4rem', '6rem', '6rem', '6rem', '6rem']}
286+
href="mailto:hello@coderhood.dev"
287+
_hover={{ color: 'gray.300' }}
288+
target="_blank"
289+
color="gray.300"
290+
textAlign="center"
291+
fontSize="0.9rem"
292+
bg="#f26840"
293+
borderRadius="0.2rem"
294+
p="0.3rem"
295+
mt="0.3rem"
296+
>
297+
Contactanos
298+
</Link>
299+
<Image
300+
src="rocketsponsor.svg"
301+
alt="rocket-sponsor"
302+
w="12rem"
303+
h="12rem"
304+
/>
305+
</Flex>
306+
</Flex>
307+
</Flex>
208308

209309
<DiscordConnect />
210310
</>

public/foxbox.jpg

8.07 KB
Loading

public/rocketsponsor.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)