|
|
|
import Head from 'next/head'
|
|
|
|
import styles from '../styles/Commissions.module.css'
|
|
|
|
import Header from '../components/header';
|
|
|
|
import Footer from '../components/footer';
|
|
|
|
|
|
|
|
export default function Commissions() {
|
|
|
|
return (
|
|
|
|
<div className="page">
|
|
|
|
<Head>
|
|
|
|
<title>Trick - Commissions</title>
|
|
|
|
</Head>
|
|
|
|
|
|
|
|
<Header />
|
|
|
|
|
|
|
|
<div className="container">
|
|
|
|
<article className="content">
|
|
|
|
|
|
|
|
<div className="card">
|
|
|
|
<h1>Commissions</h1>
|
|
|
|
|
|
|
|
<section className={styles.row}>
|
|
|
|
<div>
|
|
|
|
<h2>Headshot Icon</h2>
|
|
|
|
<p>15+ pounds</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<img src="/vulpirius_foxx_headshot.png"></img>
|
|
|
|
<img src="/trickdounut.png"></img>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section className={styles.row}>
|
|
|
|
<div>
|
|
|
|
<h2>Full body artworks</h2>
|
|
|
|
<p>25+ pounds for one peep</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<img src="/vulpirius_foxx_headshot.png"></img>
|
|
|
|
<img src="/trickdounut.png"></img>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section className={styles.row}>
|
|
|
|
<div>
|
|
|
|
<h2>Ref sheets</h2>
|
|
|
|
<p>15+ pounds extras</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<img src="/vulpirius_foxx_headshot.png"></img>
|
|
|
|
<img src="/trickdounut.png"></img>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section className={styles.row}>
|
|
|
|
<div>
|
|
|
|
<h2>NSFW Commissions</h2>
|
|
|
|
<p>30+ pounds per a character</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<img src="/vulpirius_foxx_headshot.png"></img>
|
|
|
|
<img src="/trickdounut.png"></img>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section className={styles.row}>
|
|
|
|
<div>
|
|
|
|
<h2>Large Group Artworks</h2>
|
|
|
|
<p>
|
|
|
|
100+ pounds for 8 peeps <br />
|
|
|
|
15+ pounds per an extra peep
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<img src="/vulpirius_foxx_headshot.png"></img>
|
|
|
|
<img src="/trickdounut.png"></img>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<Footer />
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|