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.

53 lines
2.1 KiB

<script>
import Social from "$lib/elements/Social.svelte";
import Navbar from "$lib/header/Navbar.svelte";
</script>
<svelte:head>
<title>Commission Info || Siv Kyne</title>
</svelte:head>
<main class="flex flex-col gap-5">
<Navbar page="/commissions" />
<section class="container bg-gray-800 rounded-lg shadow-lg p-5 flex flex-col" id="icons">
<h2 class="text-xl font-bold">Icon Commissions</h2>
</section>
<section class="container bg-gray-800 rounded-lg shadow-lg p-5 flex flex-col" id="emote">
<h2 class="text-xl font-bold">Emote Commissions</h2>
</section>
<section class="container bg-gray-800 rounded-lg shadow-lg p-5 flex flex-col" id="ych">
<h2 class="text-xl font-bold">YCH Commissions</h2>
</section>
<section class="container bg-gray-800 rounded-lg shadow-lg p-5 flex flex-col" id="halfbody">
<h2 class="text-xl font-bold">Half Body Commissions</h2>
</section>
<section class="container bg-gray-800 rounded-lg shadow-lg p-5 flex flex-col" id="fullbody">
<h2 class="text-xl font-bold">Full Body Commissions</h2>
</section>
<section class="container bg-gray-800 rounded-lg shadow-lg p-5 flex flex-col" id="animation">
<h2 class="text-xl font-bold">Animation Commissions</h2>
</section>
<section class="container bg-gray-800 rounded-lg shadow-lg p-5 flex flex-col" id="refsheet">
<h2 class="text-xl font-bold">Reference Sheet Commissions</h2>
</section>
<section class="container bg-gray-800 rounded-lg shadow-lg p-5 flex flex-col" id="complex">
<h2 class="text-xl font-bold">Complex Scene Commissions</h2>
</section>
<section class="container bg-gray-800 rounded-lg shadow-lg p-5 flex flex-col">
<div class="flex flex-wrap justify-center items-center gap-5">
<Social href="https://trello.com/b/JfPAzQyJ/siv-kynes-commission-queue" icon="📑" text="Commission Queue" />
<Social href="https://ko-fi.com/sivkyne" icon="☕" text="Ko-fi" />
<Social href="https://paypal.me/sivkyne" icon="💰" text="PayPal" />
</div>
</section>
</main>