|
1 | 1 | import { Box, Flex, Text } from "@chakra-ui/react"
|
2 | 2 |
|
3 | 3 | import { ButtonLink } from "@/components/Buttons"
|
4 |
| -import { Image } from "@/components/Image" |
5 | 4 |
|
6 |
| -import KipuLogo from "@/public/images/translatathon/kipu-logo.png" |
| 5 | +import Emoji from "../Emoji" |
7 | 6 |
|
8 | 7 | const localCommunitiesData = [
|
9 | 8 | {
|
10 | 9 | organizer: "ETH Kypo",
|
11 | 10 | description:
|
12 | 11 | "ETH Kipu is an organization dedicated to supporting the Ethereum ecosystem in Latin America.",
|
13 |
| - logo: KipuLogo, |
14 |
| - lumaLink: "https://example.com", |
15 |
| - location: "🇦🇷 Buenos Aires, Argentina", |
16 |
| - }, |
17 |
| - { |
18 |
| - organizer: "ETH Kypo", |
19 |
| - description: |
20 |
| - "ETH Kipu is an organization dedicated to supporting the Ethereum ecosystem in Latin America.", |
21 |
| - logo: KipuLogo, |
22 |
| - lumaLink: "https://example.com", |
23 |
| - location: "🇦🇷 Buenos Aires, Argentina", |
24 |
| - }, |
25 |
| - { |
26 |
| - organizer: "ETH Kypo", |
27 |
| - description: |
28 |
| - "ETH Kipu is an organization dedicated to supporting the Ethereum ecosystem in Latin America.", |
29 |
| - logo: KipuLogo, |
30 |
| - lumaLink: "https://example.com", |
31 |
| - location: "🇦🇷 Buenos Aires, Argentina", |
32 |
| - }, |
33 |
| - { |
34 |
| - organizer: "ETH Kypo", |
35 |
| - description: |
36 |
| - "ETH Kipu is an organization dedicated to supporting the Ethereum ecosystem in Latin America.", |
37 |
| - logo: KipuLogo, |
38 |
| - lumaLink: "https://example.com", |
39 |
| - location: "🇦🇷 Buenos Aires, Argentina", |
40 |
| - }, |
41 |
| - { |
42 |
| - organizer: "ETH Kypo", |
43 |
| - description: |
44 |
| - "ETH Kipu is an organization dedicated to supporting the Ethereum ecosystem in Latin America.", |
45 |
| - logo: KipuLogo, |
46 |
| - lumaLink: "https://example.com", |
47 |
| - location: "🇦🇷 Buenos Aires, Argentina", |
48 |
| - }, |
49 |
| - { |
50 |
| - organizer: "ETH Kypo", |
51 |
| - description: |
52 |
| - "ETH Kipu is an organization dedicated to supporting the Ethereum ecosystem in Latin America.", |
53 |
| - logo: KipuLogo, |
54 |
| - lumaLink: "https://example.com", |
55 |
| - location: "🇦🇷 Buenos Aires, Argentina", |
56 |
| - }, |
57 |
| - { |
58 |
| - organizer: "ETH Kypo", |
59 |
| - description: |
60 |
| - "ETH Kipu is an organization dedicated to supporting the Ethereum ecosystem in Latin America.", |
61 |
| - logo: KipuLogo, |
| 12 | + emojiString: ":peru:", |
62 | 13 | lumaLink: "https://example.com",
|
63 | 14 | location: "🇦🇷 Buenos Aires, Argentina",
|
64 | 15 | },
|
@@ -105,13 +56,7 @@ export const LocalCommunitiesList = () => {
|
105 | 56 | </Flex>
|
106 | 57 | </Flex>
|
107 | 58 | <Flex minW="90">
|
108 |
| - <Image |
109 |
| - src={community.logo} |
110 |
| - alt={community.organizer} |
111 |
| - width="90" |
112 |
| - height="130" |
113 |
| - style={{ objectFit: "contain" }} |
114 |
| - /> |
| 59 | + <Emoji fontSize={90} text={community.emojiString} /> |
115 | 60 | </Flex>
|
116 | 61 | </Flex>
|
117 | 62 | ))}
|
|
0 commit comments