Skip to main content

max / makenotwork

5.7 KB · 122 lines History Blame Raw
1 {% extends "base.html" %}
2
3 {% block title %}Creators - Makenotwork{% endblock %}
4 {% block body_attrs %} class="{{ crate::shell::measure(crate::shell::Measure::Wide) }} creators-page"{% endblock %}
5
6 {% block content %}
7 {% include "partials/site_header.html" %}
8
9 <div class="container">
10 <h1 class="page-title">Become a Creator</h1>
11
12 <div class="page-intro">
13 Anyone can sign up to browse and buy. To create projects and sell your work,
14 apply for creator access. Most applications are approved within a few days.
15 Makenotwork is in private alpha; we're approving applications one cohort at a time.
16 </div>
17
18 <div class="how-it-works">
19 <h2 class="section-header">How It Works</h2>
20 <ol>
21 <li><strong>Sign up</strong> and verify your email</li>
22 <li><strong>Apply</strong> from your dashboard: tell us what you make and which tier fits</li>
23 <li><strong>Get approved</strong>: we review applications individually, usually within a few days</li>
24 </ol>
25
26 <p class="mt-section">
27 We review applications to make sure applicants are here to share and sell creative work.
28 If you make something and want to sell it, you'll likely get in.
29 Link to your existing work (a portfolio, channel, or profile elsewhere) to speed things up.
30 </p>
31
32 <p class="mt-section">
33 <strong>Important:</strong> You sell in the currency your Stripe account settles in, and receiving
34 payouts requires a <a href="https://stripe.com/global">Stripe</a> account in a supported country that
35 settles in one of the six we support: <strong>USD, CAD, GBP, AUD, NZD or EUR</strong>. Check both with
36 Stripe before applying.
37 </p>
38 </div>
39
40 <div class="stats-row">
41 <div class="stat-box">
42 <div class="number">{{ total_creators }}</div>
43 <div class="label">Active Creators</div>
44 </div>
45 </div>
46
47 <h2 class="section-header">Pricing</h2>
48 <p class="mb-section">Flat monthly fee. 0% cut of your revenue. The only deduction from fan payments is the payment processor's fee (~3%).</p>
49 <table class="wave-table" aria-label="Creator plan pricing">
50 <thead>
51 <tr>
52 <th>Tier</th>
53 <th>Monthly</th>
54 <th>Best For</th>
55 <th>Storage</th>
56 </tr>
57 </thead>
58 <tbody>
59 <tr>
60 <td>Basic</td>
61 <td>${{ tier_prices.basic_std }}</td>
62 <td>Text, blogs, newsletters</td>
63 <td>{{ tier_prices.basic_total }}</td>
64 </tr>
65 <tr>
66 <td>Small Files</td>
67 <td>${{ tier_prices.small_files_std }}</td>
68 <td>Audio, plugins, small software</td>
69 <td>{{ tier_prices.small_files_total }}</td>
70 </tr>
71 <tr>
72 <td>Big Files</td>
73 <td>${{ tier_prices.big_files_std }}</td>
74 <td>Video, games, large software</td>
75 <td>{{ tier_prices.big_files_total }}</td>
76 </tr>
77 <tr>
78 <td>Everything</td>
79 <td>${{ tier_prices.everything_std }}</td>
80 <td>All features, current and future</td>
81 <td>{{ tier_prices.everything_total }}</td>
82 </tr>
83 </tbody>
84 </table>
85 <p class="pricing-fineprint">
86 Every tier is the complete platform: <code>/u/username</code> profile, project and item pages, project forum, Discover listing, memberships, pay-what-you-want, promo codes, RSS, analytics, full data export, 2FA/passkeys. The tier picks the file-size envelope, not the feature set.
87 You sell in your Stripe account's currency (USD, CAD, GBP, AUD, NZD or EUR); receiving payouts requires <a href="https://stripe.com/global">Stripe</a> in a supported country.
88 <a href="/docs/tiers">Full tier details</a> | <a href="/docs/pricing">Pricing models</a>
89 </p>
90
91 <p class="trial-callout">
92 <strong>Not ready to commit?</strong> Request a <strong>free trial</strong> (2-6 weeks, no credit card) when you apply.
93 Or <a href="/sandbox">try sandbox mode</a> to explore the dashboard without signing up.
94 </p>
95
96 <h2 class="section-header">Who Runs This</h2>
97 <p>
98 Makenotwork is built and operated by one person. No investors, no board, no outside pressure.
99 Decisions are fast and aligned with creators, but there's no large team behind the scenes.
100 Read the full picture in our
101 <a href="/docs/guarantees#continuity">continuity guarantee</a> and
102 <a href="/docs/economics">platform economics</a>.
103 </p>
104
105 <div class="cta">
106 {% if is_creator %}
107 <p>You have creator access.</p>
108 <a href="/dashboard" class="btn-primary">Go to Dashboard</a>
109 {% else %}
110 {% if let Some(user) = session_user %}
111 <p>Ready to create?</p>
112 <a href="/dashboard#tab-plan" class="btn-primary">Apply from Dashboard</a>
113 {% else %}
114 <p>Join to get started.</p>
115 <a href="/join" class="btn-primary">Join</a>
116 <a href="/login" class="btn-secondary">Login</a>
117 {% endif %}
118 {% endif %}
119 </div>
120 </div>
121 {% endblock %}
122