From 4f9e1ebcf0a66ad3ba2959aeab5ce80da95487aa Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Fri, 27 Mar 2026 22:57:05 +0100 Subject: Added commissions.php --- src/Pages/commissions/commissions.php | 271 ++++++++++++++++++++++++++++++++++ 1 file changed, 271 insertions(+) create mode 100644 src/Pages/commissions/commissions.php (limited to 'src') diff --git a/src/Pages/commissions/commissions.php b/src/Pages/commissions/commissions.php new file mode 100644 index 0000000..5a31628 --- /dev/null +++ b/src/Pages/commissions/commissions.php @@ -0,0 +1,271 @@ + + + + + + 256phi | Commissions + + + + + +
+

COMMISSIONS

+

// request custom artwork

+ +

+ Status: [ OPEN ] +

+ +

+ Check out my portfolio to see examples of my work. +

+ + +
+

What I Offer

+
    +
  • Alt-style pixel art
  • +
  • Digital illustrations
  • +
  • Character art, icons, scenes
  • +
+
+ + +
+

Pricing

+

Prices are based on size and complexity. Contact me for a quote.

+ + + + + + + + + + + + + + + + + + + + + +
TypeUSDEUR
Small / IconN/AN/A
Medium / PortraitN/AN/A
Large / Full SceneN/AN/A
+

+ Complex backgrounds cost extra
+ + Commercial use costs extra
+ + Rush orders available (+50%)

+
+ + +
+

I Will Draw

+
    +
  • Original characters (OCs)
  • +
  • Fan art
  • +
  • Portraits / avatars
  • +
  • Pixel art sprites and icons
  • +
  • Scene illustrations
  • +
+
+ + +
+

I Will NOT Draw

+
    +
  • NSFW / adult content
  • +
  • Hateful, discriminatory, or offensive content
  • +
  • Anything that promotes harm
  • +
+
+ + +
+

Terms of Service

+
    +
  • Payment: 50% upfront, 50% upon completion
  • +
  • Turnaround: 1-2 weeks (depending on complexity)
  • +
  • Revisions: Minor revisions included; major changes may cost extra
  • +
  • Ownership: Shared rights - both artist and client may use the work
  • +
  • Credit: Please credit me when posting the artwork publicly
  • +
  • AI: Absolutely NO AI use of my artwork permitted
  • +
+
+ + +
+

Request a Commission

+ + 5000) { + $error = 'Description is too long (max 5000 characters).'; + } else { + // Compose email + $to = 'commissions@256phi.eu'; + $subject = "Commission Request from $name"; + $body = "New commission request:\n\n"; + $body .= "Name: $name\n"; + $body .= "Email: $email\n"; + $body .= "Budget: $budget\n\n"; + $body .= "Description:\n$description\n"; + + $headers = "From: noreply@256phi.eu\r\n"; + $headers .= "Reply-To: $email\r\n"; + $headers .= "Content-Type: text/plain; charset=UTF-8\r\n"; + + if (mail($to, $subject, $body, $headers)) { + $success = true; + } else { + $error = 'Failed to send message. Please try emailing directly.'; + } + } + } + } + ?> + + +
+ Your commission request has been sent. I'll get back to you soon! +
+ +
+ +
+ + + +
+
+ + +
+ +
+ + +
+ + +
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+ + +

+ Or email me directly at commissions@256phi.eu +

+
+ + +
+ + + + -- cgit v1.2.3