diff options
author | Ashelyn Rose <git@tempest.dev> | 2023-05-08 02:17:40 -0600 |
---|---|---|
committer | Ashelyn Rose <git@tempest.dev> | 2023-05-08 02:17:40 -0600 |
commit | 880cfbeb74546056feab63ed6e92a10c0dbaf2c3 (patch) | |
tree | 33c7429bd5b1b968d74c74a4b7fbf0aa072111f7 /app/page.tsx | |
parent | 885d95d889633e312567d891831d74d9e120e5b8 (diff) |
New layout, uses nextjs
Diffstat (limited to 'app/page.tsx')
-rw-r--r-- | app/page.tsx | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..49d887c --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,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> + ) +} |