-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathCommunity.jsx
More file actions
65 lines (63 loc) · 2.07 KB
/
Community.jsx
File metadata and controls
65 lines (63 loc) · 2.07 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
60
61
62
63
64
65
import { useState, useEffect } from "react";
import styles from "./Community.module.css";
/**
* @return {JSX.Element} The rendered Community component.
*/
const Community = () => {
return (
<div id="community" className={styles.community}>
<h1 className={styles.community__title}>
Our
<span className={styles.community__title_highlight}> Community</span> Partners!
</h1>
<div className={styles.powered}>
<a href="https://pydelhi.org" target="_blank" rel="no noreferrer">
<img
className={`${styles.community__chapter} ${styles.outline}`}
src="assets/images/communities/pydelhi.png"
alt="Pydelhi"
width={"auto"}
height={"200"}
/>
</a>
<a href="https://rustdelhi.in" target="_blank" rel="no noreferrer">
<img
className={styles.community__chapter}
src="assets/images/communities/rustdelhi.png"
alt="RustDelhi"
width={"auto"}
height={"200"}
/>
</a>
<a href="https://linuxdelhi.org/" target="_blank" rel="no noreferrer">
<img
className={`${styles.community__chapter} ${styles.outline}`}
src="assets/images/communities/ilugd.png"
alt="India Linux User Group"
width={"auto"}
height={"200"}
/>
</a>
<a href="https://fossunited.org/" target="_blank" rel="no noreferrer">
<img
className={styles.community__chapter}
src="assets/images/communities/foss-united.png"
alt="Foss United Foundation"
width={"auto"}
height={"200"}
/>
</a>
<a href="https://2024.ubucon.asia/" target="_blank" rel="no noreferrer">
<img
className={styles.community__chapter}
src="/assets/images/communities/ubucon.png"
alt="Ubucon Asia"
width={"auto"}
height={"200"}
/>
</a>
</div>
</div>
);
};
export default Community;