diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-03-27 23:36:49 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-03-27 23:36:49 +0100 |
| commit | 43e09eab1fc0a190aa64d89cbbbfe030984b46b2 (patch) | |
| tree | ba673a71c2ef228a08eeffde243e443764c45488 | |
| parent | faf28d6c01cc37846674b9fafff756dd4656377a (diff) | |
did some QoL changes to the commissions page
| -rw-r--r-- | src/Pages/commissions/commissions.php | 128 |
1 files changed, 108 insertions, 20 deletions
diff --git a/src/Pages/commissions/commissions.php b/src/Pages/commissions/commissions.php index 5d06e4c..683eaf2 100644 --- a/src/Pages/commissions/commissions.php +++ b/src/Pages/commissions/commissions.php @@ -73,6 +73,67 @@ font-size: 14px; word-break: break-all; } + .commission-btn { + display: inline-block; + padding: 8px 16px; + font-size: 14px; + background: transparent; + border: 1px solid #ff00ff; + color: #ff00ff; + cursor: pointer; + text-decoration: none; + transition: all 0.3s ease; + } + .commission-btn:hover { + background: rgba(255, 0, 255, 0.2); + box-shadow: 0 0 10px rgba(255, 0, 255, 0.4); + } + .stay-updated { + text-align: center; + padding: 20px; + margin: 20px 0; + border: 1px dashed rgba(0, 255, 255, 0.4); + background: rgba(0, 255, 255, 0.05); + } + .stay-updated h3 { + color: #00ffff; + margin-top: 0; + } + .social-links { + display: flex; + justify-content: center; + gap: 20px; + margin: 15px 0; + flex-wrap: wrap; + } + .social-links a { + color: #ff00ff; + text-decoration: none; + padding: 8px 16px; + border: 1px solid rgba(255, 0, 255, 0.5); + transition: all 0.3s ease; + } + .social-links a:hover { + background: rgba(255, 0, 255, 0.2); + } + .size-table { + width: 100%; + border-collapse: collapse; + margin: 15px 0; + } + .size-table th, + .size-table td { + padding: 12px; + text-align: left; + border-bottom: 1px solid rgba(255, 0, 255, 0.2); + } + .size-table th { + color: #ff00ff; + } + .size-table td:first-child { + color: #00ffff; + font-weight: bold; + } </style> </head> <body> @@ -89,6 +150,20 @@ Check out my <a href="/portfolio">portfolio</a> to see examples of my work. </p> + <p style="text-align: center; margin: 20px 0;"> + <a href="#commission-form" class="commission-btn">Commission Me</a> + </p> + + <!-- STAY UPDATED --> + <div class="stay-updated"> + <h3>Be the first to know when commissions open</h3> + <div class="social-links"> + <a href="https://instagram.com/256phi" target="_blank" rel="noopener">Instagram</a> + <a href="https://tumblr.com/256phi" target="_blank" rel="noopener">Tumblr</a> + <a href="mailto:mailing-list@256phi.eu?subject=Subscribe%20to%20Commission%20Updates">Join Mailing List</a> + </div> + </div> + <!-- WHAT I OFFER --> <div class="commission-section"> <h2>What I Offer</h2> @@ -99,35 +174,44 @@ </ul> </div> - <!-- PRICING --> + <!-- SIZES & TYPES --> <div class="commission-section"> - <h2>Pricing</h2> - <p>Prices are based on size and complexity. Contact me for a quote.</p> - <table class="price-table"> + <h2>Sizes & Types</h2> + <p>Prices vary based on complexity. Contact me for a quote.</p> + <table class="size-table"> <tr> <th>Type</th> - <th>USD</th> - <th>EUR</th> + <th>Description</th> </tr> <tr> - <td>Small / Icon</td> - <td>N/A</td> - <td>N/A</td> + <td>Icon</td> + <td>Small profile picture or avatar, simple background</td> </tr> <tr> - <td>Medium / Portrait</td> - <td>N/A</td> - <td>N/A</td> + <td>Bust</td> + <td>Head and shoulders, chest up</td> </tr> <tr> - <td>Large / Full Scene</td> - <td>N/A</td> - <td>N/A</td> + <td>Half-Body</td> + <td>Waist up, more detail and pose options</td> + </tr> + <tr> + <td>Full-Body</td> + <td>Complete character from head to toe</td> + </tr> + <tr> + <td>Half Scene</td> + <td>Character with partial background or simple environment</td> + </tr> + <tr> + <td>Full Scene</td> + <td>Complete illustration with detailed background and composition</td> </tr> </table> <p><em>+ Complex backgrounds cost extra<br> + + Additional characters cost extra<br> + Commercial use costs extra<br> - + Rush orders available (+50%)</em></p> + + Rush orders available</em></p> </div> <!-- DO'S --> @@ -136,6 +220,9 @@ <ul class="do-list"> <li>Original characters (OCs)</li> <li>Fan art</li> + <li>Anthro / furry characters</li> + <li>Adult Swim / [as] style art</li> + <li>Vent art and dark themes</li> <li>Portraits / avatars</li> <li>Pixel art sprites and icons</li> <li>Scene illustrations</li> @@ -146,9 +233,9 @@ <div class="commission-section"> <h2>I Will NOT Draw</h2> <ul class="dont-list"> - <li>NSFW / adult content</li> - <li>Hateful, discriminatory, or offensive content</li> - <li>Anything that promotes harm</li> + <li>Hateful or discriminatory content</li> + <li>Real people in compromising situations</li> + <li>Content depicting minors inappropriately</li> </ul> </div> @@ -156,6 +243,7 @@ <div class="commission-section"> <h2>Terms of Service</h2> <ul> + <li><strong>Right to Refuse:</strong> I reserve the right to reject any commission request for any reason</li> <li><strong>Payment:</strong> 50% upfront, 50% upon completion</li> <li><strong>Turnaround:</strong> 1-2 weeks (depending on complexity)</li> <li><strong>Revisions:</strong> Minor revisions included; major changes may cost extra</li> @@ -166,7 +254,7 @@ </div> <!-- CONTACT FORM --> - <div class="commission-section"> + <div class="commission-section" id="commission-form"> <h2>Request a Commission</h2> <?php |
