Skip to main content

max / makenotwork

4.8 KB · 99 lines History Blame Raw
1 {% extends "base.html" %}
2
3 {% block title %}Content Policy - Makenot.work{% endblock %}
4 {% block body_attrs %} class="padded-page policy-page"{% endblock %}
5
6 {% block head %}
7 {% endblock %}
8
9 {% block content %}
10 {% include "partials/site_header.html" %}
11
12 <div class="container">
13 <h1 class="page-title">Content Policy</h1>
14
15 <div class="page-intro">
16 Makenot.work exists so creators can sell their work on fair terms.
17 This policy describes what belongs here, what doesn't, and how we handle problems.
18 </div>
19
20 <div class="policy-section">
21 <h2 class="section-header">What's Welcome</h2>
22 <p>Creative work across all supported types:</p>
23 <ul>
24 <li>Software, plugins, presets, and templates</li>
25 <li>Audio -- music, podcasts, samples, sound design</li>
26 <li>Writing -- articles, guides, courses, fiction</li>
27 <li>Visual work -- images, photography, design assets</li>
28 <li>Video -- tutorials, performances, documentaries</li>
29 </ul>
30 <p>If you made it and it's legal to distribute, it belongs here.</p>
31 </div>
32
33 <div class="policy-section">
34 <h2 class="section-header">What's Not Allowed</h2>
35 <ul>
36 <li>Content that violates applicable law</li>
37 <li>Harassment, threats, or doxxing</li>
38 <li>Spam, deceptive listings, or bait-and-switch pricing</li>
39 <li>Malware, exploits, or tools designed to cause harm</li>
40 <li>Impersonation of other creators or organizations</li>
41 <li>Content you don't have the rights to distribute</li>
42 </ul>
43 </div>
44
45 <div class="policy-section">
46 <h2 class="section-header">How We Handle Issues</h2>
47 <p>
48 During private alpha, every creator has a direct relationship with the admin.
49 If something comes up, we talk about it. No automated takedowns, no faceless tickets.
50 </p>
51 <p>
52 Post-alpha, we'll introduce a formal process with written notice of any policy
53 violation, an opportunity to appeal, and continued access to data export throughout.
54 </p>
55 </div>
56
57 <div class="policy-section">
58 <h2 class="section-header">Your Rights</h2>
59 <ul>
60 <li>Full data export is always available -- your content, metadata, and transaction history</li>
61 <li>If we ever moderate content or suspend an account, you'll get a clear explanation of what policy was violated</li>
62 <li>You'll have the opportunity to appeal</li>
63 <li>You can export your data even while suspended (excluding content we can't legally host)</li>
64 </ul>
65 <p>These commitments are part of our <a href="/creators">creator guarantees</a>.</p>
66 </div>
67
68 <div class="policy-section">
69 <h2 class="section-header">Software Downloads</h2>
70 <p>Makenot.work hosts downloadable software uploaded by creators.
71 While we take steps to make sure downloads are safe:</p>
72 <ul>
73 <li>Creators are responsible for the safety and integrity of their uploads</li>
74 <li>Users should verify downloads with antivirus software before running them</li>
75 <li>We do not guarantee that any download is free of malware or other harmful content</li>
76 <li>Report suspicious downloads to <strong>reports@makenot.work</strong></li>
77 </ul>
78 </div>
79
80 <div class="policy-section">
81 <h2 class="section-header">Other Policies</h2>
82 <ul>
83 <li><a href="/docs/legal/terms-of-service">Terms of Service</a> &mdash; what you agree to by using Makenot.work</li>
84 <li><a href="/docs/legal/privacy-policy">Privacy Policy</a> &mdash; what we collect, why, and how to exercise your rights</li>
85 <li><a href="/docs/legal/payments">Payments &amp; Refunds</a> &mdash; merchant-of-record model, refunds, chargebacks</li>
86 <li><a href="/docs/legal/acceptable-use">Acceptable Use</a> &mdash; specific behaviour that gets accounts suspended</li>
87 <li><a href="/docs/legal/copyright">Copyright &amp; DMCA</a> &mdash; how takedowns and counter-notifications work</li>
88 <li><a href="/docs/legal/appeals">Appeals</a> &mdash; how to challenge a moderation decision</li>
89 </ul>
90 </div>
91
92 <div class="contact">
93 <h2 class="section-header">Questions</h2>
94 <p>If something's unclear or you want to check before posting, reach out at
95 <strong>policy@makenot.work</strong>.</p>
96 </div>
97 </div>
98 {% endblock %}
99