|
|
|
import Head from 'next/head'
|
|
|
|
import styles from '../styles/Index.module.css'
|
|
|
|
import Header from '../components/header';
|
|
|
|
import Footer from '../components/footer';
|
|
|
|
import Socials from '../components/socials';
|
|
|
|
|
|
|
|
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 <span>{Mottos[randomNumber]}</span>;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function Index() {
|
|
|
|
return (
|
|
|
|
<div className="page">
|
|
|
|
<Head>
|
|
|
|
<title>Trick - Index</title>
|
|
|
|
</Head>
|
|
|
|
|
|
|
|
<Header />
|
|
|
|
|
|
|
|
<div className="container">
|
|
|
|
<article className="content">
|
|
|
|
|
|
|
|
<section className="card">
|
|
|
|
<div className={styles.avatar}>
|
|
|
|
<div className={styles.icon}>
|
|
|
|
<img src="/trickwow.png"></img>
|
|
|
|
</div>
|
|
|
|
<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>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<Socials />
|
|
|
|
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<Footer />
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|