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.

87 lines
3.2 KiB

import Head from 'next/head'
3 years ago
import styles from '../styles/Index.module.css'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
3 years ago
import { faTwitter } from "@fortawesome/free-solid-svg-icons";
3 years ago
function RandomMotto(props) {
const Mottos = [
3 years ago
"Yesterday is history, tomorrow is a mystery and today is a gift that's why it's called the present",
3 years ago
"Just have fun!",
3 years ago
"Live and let go",
"Keep calm and carry on"
3 years ago
];
const randomNumber = Math.floor(Math.random() * Mottos.length);
3 years ago
return <span>{Mottos[randomNumber]}</span>;
3 years ago
}
3 years ago
export default function Index() {
return (
3 years ago
<div className={styles.page}>
<Head>
3 years ago
<title>Trick The Fox | Index</title>
<link rel="icon" href="/sign.png" />
3 years ago
</Head>
3 years ago
<div className={styles.colorfulbar}></div>
<div className={styles.menu}>
<div className={styles.container}>
<a href="/" className={styles.title}><img src="/sign.png"></img> <h2>Trick The Fox</h2></a>
3 years ago
<div className={styles.items}>
<a href="/commissions">Commissions</a>
<a href="/gallery">Gallery</a>
<a href="/contact">Contact</a>
</div>
</div>
</div>
3 years ago
<div className={styles.container}>
<article className={styles.content}>
3 years ago
<section>
<div className={styles.card}>
<div className={styles.avatar}>
<img src="/trickwow.png"></img>
<div>
<h1>Hi, I'm Trick!</h1>
<h4>"<RandomMotto />"</h4>
</div>
</div>
<div>
<h3>About me:</h3>
<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>
</div>
3 years ago
</div>
3 years ago
</section>
<section>
<div>
<div className={styles.buttons}>
<a href="https://twitter.com/Trick_the_fox" target="_blank"><i className="fab fa-twitter icon"></i> Twitter</a>
<a href="https://www.twitch.tv/trick_the_fox" target="_blank"><i className="fab fa-twitch icon"></i> Twitch</a>
<a href="https://trello.com/b/cMyTLWYd" target="_blank"><i className="fab fa-trello icon"></i> Trello</a>
<a href="https://ko-fi.com/trick_the_fox" target="_blank"><i className="fas fa-coins icon"></i> Ko-fi</a>
</div>
</div>
</section>
</article>
</div>
<div className={styles.footer}>
<div className={styles.container}>
<h4>Made with love by Mid</h4>
3 years ago
</div>
3 years ago
</div>
3 years ago
</div>
)
}