-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.tsx
More file actions
136 lines (133 loc) · 6.14 KB
/
index.tsx
File metadata and controls
136 lines (133 loc) · 6.14 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import Image from 'next/image';
import Heading from '#components/Heading';
import Accountability from '#public/valueIcons/Accountability.svg';
import Dignified from '#public/valueIcons/Dignified Citizenship.svg';
import Empathy from '#public/valueIcons/Empathy.svg';
import Gender from '#public/valueIcons/Gender Equality.svg';
import Justice from '#public/valueIcons/Justice.svg';
import styles from './styles.module.css';
export default function Values() {
return (
<div className={styles.values}>
<div className={styles.valuesContent}>
<Heading className={styles.valueHeading} size="large">
Our Value
</Heading>
<div className={styles.description}>
At CAPN, our values are more than ideals—they
are actionable commitments that shape our pursuit
of gender-equal citizenship and inclusive justice.
</div>
<div className={styles.valuesList}>
<div className={styles.valueSection}>
<div className={styles.heading}>
Gender Equality
</div>
<Image
className={styles.valueIcon}
src={Gender}
alt="gender"
/>
<div className={styles.separator}>
<div className={styles.outerCircle}>
<div className={styles.innerCircle} />
</div>
<div className={styles.line} />
</div>
<div>
We advocate for gender-equal citizenship laws to
dismantle inequality and ensure everyone can thrive
without discrimination.
</div>
</div>
<div className={styles.valueSection}>
<div className={styles.heading}>
Dignified citizenship
& Livelihood
</div>
<Image
className={styles.valueIcon}
src={Dignified}
alt="dignified"
/>
<div className={styles.separator}>
<div className={styles.outerCircle}>
<div className={styles.innerCircle} />
</div>
<div className={styles.line} />
</div>
<div>
We support dignified livelihoods to empower
impacted individuals with self-sufficiency and
strengthen their citizenship rights.
</div>
</div>
<div className={styles.valueSection}>
<div className={styles.heading}>
Intersectional Justice
</div>
<Image
className={styles.valueIcon}
src={Justice}
alt="justice"
/>
<div className={styles.separator}>
<div className={styles.outerCircle}>
<div className={styles.innerCircle} />
</div>
<div className={styles.line} />
</div>
<div>
CAPN addresses intersecting forms of
discrimination and centers impacted voices
with dignity, rejecting tokenism for real empowerment.
</div>
</div>
<div className={styles.valueSection}>
<div className={styles.heading}>
Accountability & Sensitivity
</div>
<Image
className={styles.valueIcon}
src={Accountability}
alt="accountability"
/>
<div className={styles.separator}>
<div className={styles.outerCircle}>
<div className={styles.innerCircle} />
</div>
<div className={styles.line} />
</div>
<div>
We uphold accountability and sensitivity,
ensuring transparent, respectful work
grounded in integrity and empathy toward
the communities we serve.
</div>
</div>
<div className={styles.valueSection}>
<div className={styles.heading}>
Empathy & Efficiency
</div>
<Image
className={styles.valueIcon}
src={Empathy}
alt="empathy"
/>
<div className={styles.separator}>
<div className={styles.outerCircle}>
<div className={styles.innerCircle} />
</div>
<div className={styles.line} />
</div>
<div>
We prioritize sustainability and empathy,
managing resources responsibly while
building trust through compassionate engagement.
</div>
</div>
</div>
</div>
</div>
);
}