Rewrite landing page: narrative funnel, feature cards, new sales copy
Complete redesign following unsandbox-style narrative funnel: Hero → Features (6 cards) → Commission comparison → Protection → Audience → 3-step onboarding → Guides → Open Source → CTA New copy avoids verbs-to-be and "the" per brand voice. Feature cards highlight Watch Mode, 5 payment options, analytics, sandbox/creative tools, subscriptions, and multi-tenant teams. Commission comparison now visual side-by-side cards ($14 vs $19.12). Contribute Code button in footer CTAs (purple). Message ribbon updated to "no moat, no castle" manifesto line. Added mps-card-grid, mps-comparison, mps-section-divider CSS.
This commit is contained in:
parent
212c950707
commit
30756c448a
2 changed files with 390 additions and 370 deletions
99
common.css
99
common.css
|
|
@ -785,6 +785,105 @@ textarea.markup-editor-textarea {
|
|||
}
|
||||
|
||||
|
||||
/* ============================================
|
||||
FEATURE CARDS
|
||||
============================================ */
|
||||
|
||||
.mps-card-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 16px;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.mps-card {
|
||||
background-color: #FFFFFF;
|
||||
border: 1px solid #e0e0e0;
|
||||
border-radius: 10px;
|
||||
padding: 20px;
|
||||
transition: box-shadow 300ms ease, transform 200ms ease;
|
||||
}
|
||||
|
||||
.mps-card:hover {
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.mps-card-icon {
|
||||
font-size: 28px;
|
||||
margin-bottom: 8px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.mps-card-title {
|
||||
color: #0b0b0b;
|
||||
font-size: 1.1em;
|
||||
font-weight: 600;
|
||||
display: block;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.mps-card-desc {
|
||||
color: #515151;
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.mps-comparison {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 16px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.mps-comparison-card {
|
||||
border-radius: 10px;
|
||||
padding: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.mps-comparison-card.marketplace {
|
||||
background-color: #f8d7da;
|
||||
border: 2px solid #c77765;
|
||||
}
|
||||
|
||||
.mps-comparison-card.mps {
|
||||
background-color: #e8f5d4;
|
||||
border: 2px solid #678731;
|
||||
}
|
||||
|
||||
.mps-comparison-amount {
|
||||
font-size: 2.4em;
|
||||
font-weight: 600;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.mps-comparison-label {
|
||||
font-size: 14px;
|
||||
color: #515151;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.mps-section-divider {
|
||||
border: none;
|
||||
border-top: 2px solid #e0e0e0;
|
||||
margin: 40px auto;
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
@media (min-width: 800px) {
|
||||
.mps-card-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
.mps-card-grid.three-col {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
.mps-comparison {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 800px) {
|
||||
.mps-footer-grid {
|
||||
grid-template-columns: 2fr 1fr 1fr 1fr;
|
||||
|
|
|
|||
641
index.html
641
index.html
|
|
@ -3,11 +3,11 @@
|
|||
|
||||
<head>
|
||||
|
||||
<title>Sell digital downloads or physical products — commission free with Make Post Sell</title>
|
||||
<title>Make Post Sell — Commission-free shops for creators, makers, and media</title>
|
||||
|
||||
<!-- this makes mobile pretty... -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="theme-color" content="#5871ad">
|
||||
<meta name="description" content="Open your own commission-free shop. Sell digital downloads, physical products, and media. Accept Stripe, PayPal, Monero, and Dogecoin. Open source and public domain.">
|
||||
|
||||
<link rel="stylesheet" href="common.css">
|
||||
<link rel="stylesheet" href="mps.css">
|
||||
|
|
@ -18,9 +18,8 @@
|
|||
|
||||
<body style="color: #515151; background-color: #F9F9FA;">
|
||||
|
||||
|
||||
<div class="message-ribbon">
|
||||
Sell digital downloads or physical products — commission free!
|
||||
Open source & public domain — no moat, no castle, just infrastructure that outlasts its builders
|
||||
</div>
|
||||
|
||||
<noscript>
|
||||
|
|
@ -30,416 +29,338 @@ Sell digital downloads or physical products — commission free!
|
|||
</noscript>
|
||||
|
||||
<style>
|
||||
body {
|
||||
color: #515151;
|
||||
}
|
||||
|
||||
.bold-dark {
|
||||
color: #0b0b0b;
|
||||
font-weight: 550;
|
||||
}
|
||||
|
||||
.big-bold-dark {
|
||||
color: #0b0b0b;
|
||||
font-size: 1.4em;
|
||||
font-weight: 550;
|
||||
}
|
||||
|
||||
.huge-bold-dark {
|
||||
color: #0b0b0b;
|
||||
font-size: 2.7em;
|
||||
font-weight: 550;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #a3c765;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
section.logo {
|
||||
align-self: auto;
|
||||
}
|
||||
|
||||
section.content {
|
||||
background-color: #F9F9FA;
|
||||
}
|
||||
|
||||
section.well-white {
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
body { color: #515151; }
|
||||
.bold-dark { color: #0b0b0b; font-weight: 550; }
|
||||
.big-bold-dark { color: #0b0b0b; font-size: 1.4em; font-weight: 550; }
|
||||
.huge-bold-dark { color: #0b0b0b; font-size: 2.7em; font-weight: 550; }
|
||||
a { color: #a3c765; font-weight: 600; }
|
||||
section.logo { align-self: auto; }
|
||||
section.content { background-color: #F9F9FA; }
|
||||
section.well-white { background-color: #FFFFFF; }
|
||||
</style>
|
||||
|
||||
<section class="main">
|
||||
|
||||
<section class="nav-grid">
|
||||
|
||||
<section class="nav">
|
||||
|
||||
<section class="logo" >
|
||||
<section class="logo">
|
||||
<br>
|
||||
<a href="/"><img class="logo" src="/static/mps.png" /></a>
|
||||
</section>
|
||||
|
||||
<section class="middle">
|
||||
</section>
|
||||
|
||||
<section class="middle"></section>
|
||||
<section class="log-in" style="margin: 30px;">
|
||||
<a href="https://blog.makepostsell.com/">Blog</a> |
|
||||
<a href="https://my.makepostsell.com/u/settings">My Account</a>
|
||||
</section>
|
||||
|
||||
<!-- nav -->
|
||||
</section>
|
||||
|
||||
<!-- nav-grid -->
|
||||
</section>
|
||||
|
||||
<section class="content">
|
||||
|
||||
<!-- ======== HERO ======== -->
|
||||
<section class="one-column well">
|
||||
|
||||
<span class="huge-bold-dark">
|
||||
Sell the digital & physical things you make—commission free
|
||||
Make it. Post it. Sell it.
|
||||
</span>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
<br/><br/>
|
||||
|
||||
Go to market with your: art, crafts, books, clip-art, code, comics, curriculum, drafting, games, graphics, movies, music, photography, videos, video games, or whatever else you dream up!
|
||||
<span class="big-bold-dark">
|
||||
Your shop. Your brand. Your money. Zero commission.
|
||||
</span>
|
||||
|
||||
<br/><br/>
|
||||
|
||||
Launch a commission-free online shop in minutes. Sell digital downloads, physical products, and media to anyone, anywhere. Accept five payment methods. Keep every dollar minus only payment processing.
|
||||
|
||||
<br/><br/>
|
||||
|
||||
<center>
|
||||
<a href="https://my.makepostsell.com/s/new" target="_blank" class="shop-new-button mps-button">+ Open a Shop — Free</a>
|
||||
</center>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<section class="one-column well well-white">
|
||||
<span class="big-bold-dark">Frequently Asked Questions (FAQ)</span>
|
||||
<br/>
|
||||
<br/>
|
||||
<b>How to</b>
|
||||
<ul>
|
||||
<li>
|
||||
<b><a href="https://blog.makepostsell.com/c/0b408430-3a2a-11ef-8208-c3d535a3beac/how-to-create-a-new-shop-on-makepostsell">Create a New Shop</a></b>
|
||||
</li>
|
||||
<li>
|
||||
<b><a href="https://blog.makepostsell.com/c/83c41f98-3a2f-11ef-8208-c3d535a3beac/how-to-create-a-new-product-on-makepostsell">Create a New Product</a></b>
|
||||
</li>
|
||||
<li>
|
||||
<b><a href="https://blog.makepostsell.com/c/59c8c980-3a3b-11ef-8208-c3d535a3beac/how-to-create-new-content-on-makepostsell">Create a New Content</a></b>
|
||||
</li>
|
||||
<li>
|
||||
<b><a href="https://blog.makepostsell.com/c/64903474-3a3c-11ef-8208-c3d535a3beac/how-to-create-a-digital-bundle-for-products-content-on-makepostsell">Create a Digital Bundle</a></b>
|
||||
</li>
|
||||
<li>
|
||||
<b><a href="https://blog.makepostsell.com/c/a9be53fc-3a35-11ef-8208-c3d535a3beac/how-to-create-a-new-coupon-on-makepostsell">Create a New Coupon</a></b>
|
||||
</li>
|
||||
<li>
|
||||
<b><a href="https://blog.makepostsell.com/c/c8a73ae4-3a36-11ef-8208-c3d535a3beac/how-to-create-a-new-shop-location-on-makepostsell">Create a New Shop Location</a></b>
|
||||
</li>
|
||||
<li>
|
||||
<b><a href="https://blog.makepostsell.com/c/f5d7fd2c-3a37-11ef-8208-c3d535a3beac/how-to-invite-owners-editors-to-a-shop-on-makepostsell">Invite Owners & Editors to a Shop</a></b>
|
||||
</li>
|
||||
<li>
|
||||
<b><a href="https://blog.makepostsell.com/c/91d9119d-9c8e-11f0-9d98-02dfe05770ee/how-to-accept-monero-payments">Accept Payments with XMR Monero</a></b>
|
||||
</li>
|
||||
<li>
|
||||
<b><a href="https://blog.makepostsell.com/c/e7ae7ab9-9e38-11f0-9ff6-02dfe05770ee/how-to-accept-dogecoin-payments">Accept Payments with DOGE Dogecoin</a></b>
|
||||
</li>
|
||||
<center style="color: #777; font-size: 14px;">No credit card required. Close anytime, no questions asked.</center>
|
||||
|
||||
</section>
|
||||
|
||||
<hr class="mps-section-divider"/>
|
||||
|
||||
<!-- ======== WHAT YOU GET ======== -->
|
||||
<section class="one-column">
|
||||
|
||||
<span class="big-bold-dark">Everything a creator needs</span>
|
||||
|
||||
<div class="mps-card-grid">
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-icon">🎭</span>
|
||||
<span class="mps-card-title">Watch Mode & Media Channel</span>
|
||||
<span class="mps-card-desc">Turn your shop into a streaming channel. Continuous playback with DJ-style crossfade, discovery ring, queue management, pop-out player, and <b>/tv</b> + <b>/random</b> endpoints. Video, audio, images, PDFs.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-icon">💰</span>
|
||||
<span class="mps-card-title">Five Payment Options</span>
|
||||
<span class="mps-card-desc">Stripe, PayPal, Adyen, Monero (XMR), and Dogecoin (DOGE). Mix and match. Fully automated crypto cash register with built-in refund system. No humans in a loop.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-icon">📨</span>
|
||||
<span class="mps-card-title">Subscriptions & Feeds</span>
|
||||
<span class="mps-card-desc">Grow an audience. Email digests deliver new posts on their schedule — immediately, daily, or weekly. Every shop gets RSS, Atom, and sitemap endpoints automatically.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-icon">📈</span>
|
||||
<span class="mps-card-title">Analytics Dashboard</span>
|
||||
<span class="mps-card-desc">Per-product and per-shop analytics with line charts, keyword tracking, and referrer domain insights. Know what works. Grow what converts.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-icon">🎨</span>
|
||||
<span class="mps-card-title">Sandbox & Creative Tools</span>
|
||||
<span class="mps-card-desc">Built-in creative filter toolbar, canvas export, and RGB color chains. Karaoke mode with vocal isolation. Experiment, remix, and publish from one place.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-icon">👥</span>
|
||||
<span class="mps-card-title">Multi-tenant & Team</span>
|
||||
<span class="mps-card-desc">Run multiple shops from one account. Invite owners and editors. Each shop gets its own brand, products, domain, and audience. No competition — only your products appear.</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<hr class="mps-section-divider"/>
|
||||
|
||||
<!-- ======== WHY COMMISSION-FREE ======== -->
|
||||
<section class="one-column">
|
||||
|
||||
<span class="big-bold-dark">Keep what you earn</span>
|
||||
|
||||
<br/><br/>
|
||||
|
||||
Marketplaces charge 15–40% commission on every sale. That adds up fast. On a $20 sale at a 30% marketplace, you walk away with $14. On Make Post Sell, you keep <b>$19.12</b> after <a href="https://stripe.com/pricing" target="_blank">payment processing</a>.
|
||||
|
||||
<div class="mps-comparison">
|
||||
<div class="mps-comparison-card marketplace">
|
||||
<span class="mps-comparison-amount" style="color: #c77765;">$14.00</span>
|
||||
<span class="mps-comparison-label">Marketplace (30% commission)</span>
|
||||
</div>
|
||||
<div class="mps-comparison-card mps">
|
||||
<span class="mps-comparison-amount" style="color: #678731;">$19.12</span>
|
||||
<span class="mps-comparison-label">Make Post Sell (0% commission)</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
That gap compounds. Run <a target="_blank" href="https://docs.google.com/spreadsheets/d/138fW3wlNowTv09nKeIe_TZrWsLIHVoD7PdlI2HXGmLs/copy?usp=sharing">your own numbers</a> to see how much commission-free saves over a year.
|
||||
|
||||
</section>
|
||||
|
||||
<hr class="mps-section-divider"/>
|
||||
|
||||
<!-- ======== PROTECTION ======== -->
|
||||
<section class="one-column">
|
||||
|
||||
<span class="big-bold-dark">Own your platform, skip their rules</span>
|
||||
|
||||
<br/><br/>
|
||||
|
||||
<section class="one-column well">
|
||||
<ul style="list-style-type: none;">
|
||||
<li style="margin-bottom: 10px;"><b style="color: #c77765">❌</b> Sales commissions and platform fees</li>
|
||||
<li style="margin-bottom: 10px;"><b style="color: #c77765">❌</b> Censorship and de-platforming</li>
|
||||
<li style="margin-bottom: 10px;"><b style="color: #c77765">❌</b> Bad algorithms burying your work</li>
|
||||
<li style="margin-bottom: 10px;"><b style="color: #c77765">❌</b> Competitor products next to yours</li>
|
||||
<li style="margin-bottom: 10px;"><b style="color: #c77765">❌</b> Frivolous DMCA takedowns</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<span class="huge-bold-dark">
|
||||
Open Source SaaS & <span class="avoid-wrap">Public Domain</span>
|
||||
</span>
|
||||
<section class="one-column well">
|
||||
<ul style="list-style-type: none;">
|
||||
<li style="margin-bottom: 10px;"><b style="color: #678731;"> ✔ Always open</b>
|
||||
<span style="color: #515151;"> — <span class="avoid-wrap">Sell online <b>24/7</b></span></span>
|
||||
</li>
|
||||
<li style="margin-bottom: 10px;"><b style="color: #678731;"> ✔ Risk free</b>
|
||||
<span style="color: #515151;"> — <span class="avoid-wrap">Make nothing, pay nothing</span></span>
|
||||
</li>
|
||||
<li style="margin-bottom: 10px;"><b style="color: #678731;"> ✔ Commission free</b>
|
||||
<span style="color: #515151;"> — <span class="avoid-wrap">Your products, your sales, your money</span></span>
|
||||
</li>
|
||||
<li style="margin-bottom: 10px;"><b style="color: #678731;"> ✔ Walk away anytime</b>
|
||||
<span style="color: #515151;"> — <span class="avoid-wrap">Close shop, no questions asked</span></span>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
</section>
|
||||
|
||||
Make Post Sell is a Python (<a href="https://docs.pylonsproject.org/projects/pyramid/en/2.0-branch/" target="_blank">Pyramid</a>) web application which provides an environment for multi tenant e-commerce shops.
|
||||
<br/>
|
||||
<br/>
|
||||
<hr class="mps-section-divider"/>
|
||||
|
||||
<!-- ======== WHO IT SERVES ======== -->
|
||||
<section class="one-column">
|
||||
|
||||
<span class="big-bold-dark">For makers of all kinds</span>
|
||||
|
||||
<br/><br/>
|
||||
|
||||
Art, crafts, books, clip-art, code, comics, curriculum, drafting, games, graphics, movies, music, photography, videos, video games, farm stand products, merch, zines, or whatever else you dream up.
|
||||
|
||||
<br/><br/>
|
||||
|
||||
Whether you run a homestead farm stand, a music channel, a digital art shop, or a small brand — this platform adapts to what you make and how you sell it.
|
||||
|
||||
<br/><br/>
|
||||
|
||||
<center>
|
||||
<a href="https://my.makepostsell.com/s/new" target="_blank" class="shop-new-button mps-button">+ Open a Shop — Free</a>
|
||||
</center>
|
||||
|
||||
</section>
|
||||
|
||||
<hr class="mps-section-divider"/>
|
||||
|
||||
<!-- ======== GETTING STARTED ======== -->
|
||||
<section class="one-column">
|
||||
|
||||
<span class="big-bold-dark">Get started in three steps</span>
|
||||
|
||||
<div class="mps-card-grid three-col">
|
||||
|
||||
<div class="mps-card" style="text-align: center;">
|
||||
<span class="mps-card-icon">①</span>
|
||||
<span class="mps-card-title"><a href="https://blog.makepostsell.com/c/0b408430-3a2a-11ef-8208-c3d535a3beac/how-to-create-a-new-shop-on-makepostsell">Create a Shop</a></span>
|
||||
<span class="mps-card-desc">Pick a name, add a description, customize your brand. Done in under a minute.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card" style="text-align: center;">
|
||||
<span class="mps-card-icon">②</span>
|
||||
<span class="mps-card-title"><a href="https://blog.makepostsell.com/c/83c41f98-3a2f-11ef-8208-c3d535a3beac/how-to-create-a-new-product-on-makepostsell">Post a Product</a></span>
|
||||
<span class="mps-card-desc">Upload files, set a price, write a description. Digital downloads deliver instantly.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card" style="text-align: center;">
|
||||
<span class="mps-card-icon">③</span>
|
||||
<span class="mps-card-title">Start Selling</span>
|
||||
<span class="mps-card-desc">Share your shop link. Accept payments. Watch your dashboard grow.</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<hr class="mps-section-divider"/>
|
||||
|
||||
<!-- ======== MORE GUIDES ======== -->
|
||||
<section class="one-column well well-white">
|
||||
|
||||
<span class="big-bold-dark">Guides & Documentation</span>
|
||||
|
||||
<br/><br/>
|
||||
|
||||
<div class="mps-card-grid">
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-title"><a href="https://blog.makepostsell.com/c/59c8c980-3a3b-11ef-8208-c3d535a3beac/how-to-create-new-content-on-makepostsell">Create Content</a></span>
|
||||
<span class="mps-card-desc">Post articles, media, and updates to your shop feed.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-title"><a href="https://blog.makepostsell.com/c/64903474-3a3c-11ef-8208-c3d535a3beac/how-to-create-a-digital-bundle-for-products-content-on-makepostsell">Create a Digital Bundle</a></span>
|
||||
<span class="mps-card-desc">Package multiple products together at a bundled price.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-title"><a href="https://blog.makepostsell.com/c/a9be53fc-3a35-11ef-8208-c3d535a3beac/how-to-create-a-new-coupon-on-makepostsell">Create Coupons</a></span>
|
||||
<span class="mps-card-desc">Offer discounts and run promotions for your audience.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-title"><a href="https://blog.makepostsell.com/c/c8a73ae4-3a36-11ef-8208-c3d535a3beac/how-to-create-a-new-shop-location-on-makepostsell">Add Shop Locations</a></span>
|
||||
<span class="mps-card-desc">Manage physical pickup points or retail locations.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-title"><a href="https://blog.makepostsell.com/c/f5d7fd2c-3a37-11ef-8208-c3d535a3beac/how-to-invite-owners-editors-to-a-shop-on-makepostsell">Invite Collaborators</a></span>
|
||||
<span class="mps-card-desc">Add owners and editors to help manage your shop.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-title"><a href="https://blog.makepostsell.com/c/91d9119d-9c8e-11f0-9d98-02dfe05770ee/how-to-accept-monero-payments">Accept Monero (XMR)</a></span>
|
||||
<span class="mps-card-desc">Add cryptocurrency payments alongside cards.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-title"><a href="https://blog.makepostsell.com/c/e7ae7ab9-9e38-11f0-9ff6-02dfe05770ee/how-to-accept-dogecoin-payments">Accept Dogecoin (DOGE)</a></span>
|
||||
<span class="mps-card-desc">Enable DOGE payments for your customers.</span>
|
||||
</div>
|
||||
|
||||
<div class="mps-card">
|
||||
<span class="mps-card-title"><a href="https://blog.makepostsell.com/">Read More on Our Blog</a></span>
|
||||
<span class="mps-card-desc">Catch up on new features and platform updates.</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
<hr class="mps-section-divider"/>
|
||||
|
||||
<!-- ======== OPEN SOURCE ======== -->
|
||||
<section class="one-column">
|
||||
|
||||
<span class="big-bold-dark">Open Source & Public Domain</span>
|
||||
|
||||
<br/><br/>
|
||||
|
||||
Make Post Sell runs on Python (<a href="https://docs.pylonsproject.org/projects/pyramid/en/2.0-branch/" target="_blank">Pyramid</a>). Every line of code belongs to everyone. No moat, no castle — just infrastructure that outlasts its builders. Fork it, run it, improve it.
|
||||
|
||||
<br/><br/>
|
||||
|
||||
<center>
|
||||
<a href="https://pypi.org/project/make-post-sell/" target="_blank" class="source-button mps-button">🕮 PyPi</a>
|
||||
<a href="https://git.unturf.com/engineering/make-post-sell/make_post_sell" target="_blank" class="source-button mps-button">✐ Source Code</a>
|
||||
</center>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
</section>
|
||||
|
||||
Good news, you do not need to know what that means in order to grow a <b>new shop</b>:
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<center>
|
||||
<a href="https://my.makepostsell.com/s/new" target="_blank" class="shop-new-button mps-button">+ New Shop</a>
|
||||
</center>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
Whether blog or social media—you provide immense value to your followers for free.
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<b>But could you get paid doing what you love?</b>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
One way is to sell digital downloads. This sort of business has a low barrier of entry and options to keep upstart costs low by selling your digital products on an existing marketplace.
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
The problem is— each time you make a sale on a marketplace, you will pay a sales commission (often in the range of 15-40%)!
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
For example, let's say you made a $20 sale on a marketplace that takes a 30% sales commission. In this case, the marketplace would take $6 and leave you $14.
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<center>
|
||||
<a href=https://docs.google.com/spreadsheets/d/138fW3wlNowTv09nKeIe_TZrWsLIHVoD7PdlI2HXGmLs/copy?usp=sharing" target="_blank"><img src="/static/marketplace-versus-shop-1.png" style="opacity: .8; width: 90%; max-width: 400px;"/></a>
|
||||
</center>
|
||||
|
||||
<br/>
|
||||
|
||||
On-the-other-hand your commission free shop at <b>Make Post Sell</b> will yield $19.12 after <a href="https://stripe.com/pricing" target="_blank">payment processing</a> on a $20 sale!
|
||||
|
||||
<center>
|
||||
<a href=https://docs.google.com/spreadsheets/d/138fW3wlNowTv09nKeIe_TZrWsLIHVoD7PdlI2HXGmLs/copy?usp=sharing" target="_blank"><img src="/static/marketplace-versus-shop-2.png" style="opacity: .8; width: 90%; max-width: 400px;"/></a>
|
||||
</center>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<span class="big-bold-dark">
|
||||
May I speak to the boss?
|
||||
</span>
|
||||
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
Per sale commissions hurt profits, especially when compounded yearly.
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
Here's a <a target="_blank" href="https://docs.google.com/spreadsheets/d/138fW3wlNowTv09nKeIe_TZrWsLIHVoD7PdlI2HXGmLs/copy?usp=sharing">spreadsheet tool</a> to break down the numbers. You may enter information to get an estimate regarding just how much it pays to be the boss of your own shop.
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
|
||||
<span class="big-bold-dark">
|
||||
As a shop owner, you control the brand & vision while our platform tries to offer protection from —
|
||||
</span>
|
||||
<hr class="mps-section-divider"/>
|
||||
|
||||
<!-- ======== FINAL CTA ======== -->
|
||||
<section class="one-column well">
|
||||
<ul style="list-style-type: none;">
|
||||
<li style="margin-bottom: 10px;"><b style="color: #c77765">❌</b> Sales based fees and commissions</li>
|
||||
<li style="margin-bottom: 10px;"><b style="color: #c77765">❌</b> Censorship and de-platforming</li>
|
||||
<li style="margin-bottom: 10px;"><b style="color: #c77765">❌</b> Bad algorithms and anti-patterns</li>
|
||||
<li style="margin-bottom: 10px;"><b style="color: #c77765">❌</b> Competition — only your products listed</li>
|
||||
<li style="margin-bottom: 10px;"><b style="color: #c77765">❌</b> Frivolous DMCA requests</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
and the best part, if things don't work out simply close shop at anytime, no questions asked. So what are we waiting for—you're the boss
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<center>
|
||||
|
||||
<span class="big-bold-dark">
|
||||
it's time to <b>Make Post Sell!</b>
|
||||
Ready to make, post, and sell?
|
||||
</span>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
<br/><br/>
|
||||
|
||||
<a href="https://my.makepostsell.com/s/new" target="_blank" class="shop-new-button mps-button">+ Open a Shop — Free</a>
|
||||
|
||||
<a href="https://my.makepostsell.com/s/new" target="_blank" class="shop-new-button mps-button">+ New Shop</a>
|
||||
</center>
|
||||
|
||||
|
||||
<section class="one-column well">
|
||||
<ul style="list-style-type: none;">
|
||||
|
||||
<li><b style="color: #678731;"> ✔ Always open</b>
|
||||
<span style="color: #515151;">
|
||||
— <span class="avoid-wrap">Sell online <b>24/7</b></span></span>
|
||||
</li>
|
||||
|
||||
<li><b style="color: #678731;"> ✔ Risk Free</b>
|
||||
<span style="color: #515151;">
|
||||
— <span class="avoid-wrap">If you make nothing, you pay nothing</span>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
<li><b style="color: #678731;"> ✔ Commission Free</b>
|
||||
<span style="color: #515151;">
|
||||
— <span class="avoid-wrap">Your products, your sales, your money</span>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
<li><b style="color: #678731;"> ✔ Watch Mode</b>
|
||||
<span style="color: #515151;">
|
||||
— <span class="avoid-wrap">Continuous playback with DJ crossfade</span>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
<li><b style="color: #678731;"> ✔ Subscriptions & Feeds</b>
|
||||
<span style="color: #515151;">
|
||||
— <span class="avoid-wrap">Email digests, RSS, Atom, sitemap</span>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
<li><b style="color: #678731;"> ✔ Five Payment Options</b>
|
||||
<span style="color: #515151;">
|
||||
— <span class="avoid-wrap">Stripe, PayPal, Adyen, Monero, Dogecoin</span>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
<br/>
|
||||
Simply click the <b>New Shop</b> button, follow the prompts, and post some products today — no credit card required!
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</section>
|
||||
<hr class="mps-section-divider"/>
|
||||
|
||||
<br/>
|
||||
|
||||
<section class="one-column">
|
||||
<span class="big-bold-dark">Watch Mode & Media Player</span>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
Turn your shop into a media channel. Watch mode provides continuous playback with DJ-style crossfade transitions between videos and audio tracks.
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<b>Highlights:</b>
|
||||
<ul>
|
||||
<li>Discovery ring — deterministic content traversal across your whole catalog</li>
|
||||
<li>DJ crossfade — audio and visual fade between tracks, no gaps</li>
|
||||
<li>Queue management — visitors can build a personal playlist</li>
|
||||
<li>Pop-out player with keyboard shortcuts, plus <b>/random</b> and <b>/tv</b> endpoints</li>
|
||||
<li>Works with video, audio, images, and PDFs</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<br/>
|
||||
|
||||
<section class="one-column">
|
||||
<span class="big-bold-dark">Email Subscriptions & Feeds</span>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
Let your audience subscribe to your shop. Digest emails deliver new posts on their schedule—immediately, daily, or weekly. Every shop also gets RSS, Atom, and sitemap endpoints automatically.
|
||||
|
||||
</section>
|
||||
|
||||
<br/>
|
||||
|
||||
<section class="one-column">
|
||||
<span class="big-bold-dark">Now Accepting Cryptocurrency — Monero (XMR) & Dogecoin (DOGE)!</span>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
Shop owners can now offer crypto payments through Monero and Dogecoin in addition to or instead of traditional credit card processing via Stripe and PayPal.
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<b>Key features:</b>
|
||||
<ul>
|
||||
<li>Automatic crypto cash register that processes quotes for shopping carts</li>
|
||||
<li>No humans in the loop — fully automated</li>
|
||||
<li>Built-in refund system</li>
|
||||
<li>Optional — use alongside or instead of credit card payments</li>
|
||||
</ul>
|
||||
|
||||
Give your customers more payment options while maintaining full control over your shop!
|
||||
</section>
|
||||
|
||||
<br/>
|
||||
|
||||
<!--
|
||||
<!-- ======== QUESTIONS ======== -->
|
||||
<section class="one-column well well-white">
|
||||
|
||||
<b>Hey there!</b>
|
||||
<span class="big-bold-dark">Questions?</span>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
<br/><br/>
|
||||
|
||||
One of our goals is to build a platform for individuals to operate sales online for as cheap as possible.
|
||||
Drop a message below. Verify your email to get notified when we reply.
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
We enjoy helping people & small business. We give away the service at the entry level & keep a careful eye on operating expenses to make sure all shops stay online.
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<b class="avoid-wrap">Make Post Sell</b> was built old fashion way using traditional server side logic and industry standard Internet Protocols.
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
Our services have been sized for production with an open source architecture ready for a exponential growth.
|
||||
|
||||
</section>
|
||||
|
||||
<br>
|
||||
<br>
|
||||
-->
|
||||
|
||||
|
||||
<section class="one-column well well-white">
|
||||
|
||||
<span class="big-bold-dark">Questions?</span>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<!-- Remarkbox - Your readers want to communicate with you -->
|
||||
|
||||
No? Great! Just click this button to start:
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
<a href="https://my.makepostsell.com/s/new" target="_blank" class="shop-new-button mps-button">+ New Shop</a>
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
Oh, you do have questions?
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
|
||||
Perfect, just leave a message in the comment box below and make sure to verify your email address to get a notification when we reply.
|
||||
|
||||
<br/>
|
||||
<br/>
|
||||
<br/><br/>
|
||||
|
||||
<div id="remarkbox-div">
|
||||
<noscript>
|
||||
|
|
@ -496,7 +417,7 @@ Perfect, just leave a message in the comment box below and make sure to verify y
|
|||
<div class="mps-footer-brand">
|
||||
<a href="/" class="mps-footer-logo">Make Post Sell</a>
|
||||
<p class="mps-footer-tagline">
|
||||
Commission-free digital downloads & physical product sales for creators.
|
||||
Commission-free shops for creators, makers, and media. Public domain software by <a href="https://www.unturf.com/software/" target="_blank">unturf</a>.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
|
@ -524,19 +445,19 @@ Perfect, just leave a message in the comment box below and make sure to verify y
|
|||
<span class="mps-footer-group-title">Account</span>
|
||||
<nav class="mps-footer-links">
|
||||
<a href="https://my.makepostsell.com/u/settings">My Account</a>
|
||||
<a href="https://my.makepostsell.com/s/new">New Shop</a>
|
||||
<a href="https://my.makepostsell.com/s/new">Open a Shop</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="mps-footer-ctas">
|
||||
<a href="https://my.makepostsell.com/s/new" class="shop-new-button mps-button">+ New Shop</a>
|
||||
<a href="https://blog.makepostsell.com/" class="product-edit-button mps-button">🕮 Blog</a>
|
||||
<a href="https://my.makepostsell.com/s/new" class="shop-new-button mps-button">+ Open a Shop</a>
|
||||
<a href="https://git.unturf.com/engineering/make-post-sell/make_post_sell" target="_blank" class="source-button mps-button">✐ Contribute Code</a>
|
||||
</div>
|
||||
|
||||
<div class="mps-footer-bottom">
|
||||
makepostsell.com © 2026 — Commission-free sales by <a href="https://www.unturf.com/software/" target="_blank">unturf.com</a>
|
||||
makepostsell.com © 2026 — Public domain software by <a href="https://www.unturf.com/software/" target="_blank">unturf.com</a>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue