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.

94 lines
3.0 KiB

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">
3 years ago
<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>
)
}