summary refs log tree commit diff
path: root/app/page.tsx
blob: 507f1d7ce5be9fcf46085277f7143f6f9b3c980d (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
import Link from 'next/link'

import styles from '~/styles/index.module.css'

export default function Index() {
  return (
    <main className="mainColumn">
      <p>
        Hi, we're tempest!  We're a median plural
        system of six 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}>Pronouns:</span>
        <span>they/it</span>

        <span className={styles.label}>Cohort:</span>
        <span>millenial</span>

        <span className={styles.label}>Orientation:</span>
        <span>ace . . . ish</span>

        <span className={styles.label}>Partners:</span>
        <span>several</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 our <Link href="/about">about</Link> page
      </p>
    </main>
  )
}