blob: 49d887ca5ef99d94b8186ff87577bab5a66745dd (
plain)
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
|
import React from 'react';
import styles from '~/styles/index.module.css'
export default function Index() {
return (
<main className="mainColumn">
<p>
Hi, we're tempest! And we also go by ashe. We're a median plural
system of three members, but most of the time you'll probably see us
operating as one
</p>
<p>We like coding, VR, and making CG art</p>
<h2>At a glance</h2>
<div className={styles.glance}>
<span className={styles.label}>Names:</span>
<span>ashe or ashelyn</span>
<span className={styles.label}>Pronouns:</span>
<span>they/them</span>
<span className={styles.label}>Cohort:</span>
<span>millenial</span>
<span className={styles.label}>Poly:</span>
<span>yes</span>
<span className={styles.label}>Partners:</span>
<span>three</span>
<span className={styles.label}>Children:</span>
<span>two</span>
<span className={styles.label}>Capitalize name:</span>
<span>not unless we're at work</span>
</div>
<p>
<em>Note:</em> This is the information for our system in aggregate,
for individual info see <a href="/system">system</a>
</p>
</main>
)
}
|