-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathValues.astro
More file actions
35 lines (34 loc) · 1.33 KB
/
Values.astro
File metadata and controls
35 lines (34 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
---
import { Content as Empathy } from "../assets/copy/values/Empathy.md";
import { Content as Transparency } from "../assets/copy/values/Transparency.md";
import { Content as Inclusivity } from "../assets/copy/values/Inclusivity.md";
import { Image } from "astro:assets";
import empathy from "../assets/icons/empathy.png";
import transparency from "../assets/icons/transparency.png";
import inclusivity from "../assets/icons/inclusivity.png";
---
<section id="values">
<div class="max-w-[130ch] mx-auto py-12 px-3">
<h2 class="font-bold font-serif text-2xl text-center mb-6">Our Values</h2>
<ul class="flex flex-col sm:flex-row justify-between">
<li class="flex flex-col gap-6 p-3 items-center sm:w-1/3">
<Image class="w-42" src={empathy} alt="Man in office." />
<div class="prose text-center">
<Empathy />
</div>
</li>
<li class="flex flex-col gap-6 p-3 items-center sm:w-1/3">
<Image class="w-42" src={transparency} alt="Man in office." />
<div class="prose text-center">
<Transparency />
</div>
</li>
<li class="flex flex-col gap-6 p-3 items-center sm:w-1/3">
<Image class="w-42" src={inclusivity} alt="Man in office." />
<div class="prose text-center">
<Inclusivity />
</div>
</li>
</ul>
</div>
</section>