You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
2.9 KiB

import Head from 'next/head'
3 years ago
import styles from '../styles/Index.module.css'
import { faTwitter } from '@fortawesome/free-brands-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
function RandomMotto(props) {
const Mottos = [
"Yesterday is history, tomorrow is a mystery and today is a gift that's why it's called the present.",
"Just have fun!",
"Live and let go.",
"Keep calm and carry on."
];
const randomNumber = Math.floor(Math.random() * Mottos.length);
return <p>{Mottos[randomNumber]}</p>;
}
export default function Home() {
return (
3 years ago
<div className={styles.page}>
<Head>
<title>Trick's Website</title>
<link rel="icon" href="/trick.jpg" />
</Head>
3 years ago
<section className={styles.container}>
<div className={styles.main}>
<article className={styles.content}>
<section className={styles.header}>
<div className={styles.avatar_bar}>
<img src="trick.jpg" className={styles.avatar}></img>
<h1>Trick The Fox</h1>
</div>
</section>
3 years ago
<h2><RandomMotto /></h2>
3 years ago
<p>
I'm a gay femboy nurse fox who likes figure skating, running and dancing,
addicted to vr and video making and I'm always listening to music,
oh and I play dnd... And that's just about me in a nutshell.
</p>
</article>
3 years ago
<aside className={styles.content}>
<div className={styles.links}>
<a href="https://twitter.com/Trick_the_fox" target="_blank"><FontAwesomeIcon ico={faTwitter} /> Twitter</a>
<a href="https://www.twitch.tv/trick_the_fox" target="_blank">Twitch</a>
<a href="https://docs.google.com/document/d/1cwacGjMxjppSblnxEp5RSCBOlPQDICWisST6R0mMVJQ/edit?usp=sharing" target="_blank">Commissions</a>
<a href="https://trello.com/b/cMyTLWYd" target="_blank">Trello</a>
<a href="https://ko-fi.com/trick_the_fox" target="_blank">Ko-fi</a>
</div>
</aside>
</div>
</section>
3 years ago
<section className={styles.container}>
<section className={styles.content}>
<h2>Gallery</h2>
<div className={styles.gallery}>
<img src="trick_be_sitting_shadow.png"></img>
<img src="Unnamed.png"></img>
<img src="wow.png"></img>
<img src="triiiiick.png"></img>
<img src="tricky_boy.png"></img>
</div>
</section>
</section>
</div>
)
}