Pricing calculator page: shops × seats × duration with discounts
Interactive calculator at /pricing.html. $14/mo per shop per seat. Duration discounts: 14% off 1yr, 28% off 2yr, 42% off 3yr. Live breakdown with effective monthly rate. Linked from landing page pricing section and footer.
This commit is contained in:
parent
4de23cd82c
commit
fd1bd927c8
3 changed files with 565 additions and 0 deletions
|
|
@ -92,6 +92,7 @@ Open source & public domain — no moat, no castle, just infrastructure
|
|||
</div>
|
||||
|
||||
<p class="landing-muted">Zero commission fees. You keep every dollar minus only payment processing.</p>
|
||||
<p class="landing-muted" style="margin-top: 12px;"><a href="/pricing.html" style="color: #a3c765; font-weight: 600;">Pricing calculator</a> — multiple shops, seats, and multi-year discounts.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
|
@ -441,6 +442,7 @@ Open source & public domain — no moat, no castle, just infrastructure
|
|||
<nav class="mps-footer-links">
|
||||
<a href="https://my.makepostsell.com/u/settings">My Account</a>
|
||||
<a href="https://my.makepostsell.com/s/new">Open a Shop</a>
|
||||
<a href="/pricing.html">Pricing Calculator</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
233
landing.css
233
landing.css
|
|
@ -406,6 +406,227 @@ a.mps-button.landing-cta-large {
|
|||
color: #666;
|
||||
}
|
||||
|
||||
/* ---- Pricing Calculator ---- */
|
||||
|
||||
.calc-card {
|
||||
background: #FFFFFF;
|
||||
border: 1px solid #e0e0e0;
|
||||
border-radius: 16px;
|
||||
padding: 32px 24px;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.calc-row {
|
||||
margin-bottom: 28px;
|
||||
}
|
||||
|
||||
.calc-row:last-of-type {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.calc-label {
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
color: #0b0b0b;
|
||||
display: block;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.calc-hint {
|
||||
font-size: 13px;
|
||||
color: #999;
|
||||
margin: 0 0 12px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.calc-stepper {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.calc-step-btn {
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
border: 1px solid #e0e0e0;
|
||||
background: #F9F9FA;
|
||||
font-size: 20px;
|
||||
font-weight: 600;
|
||||
color: #515151;
|
||||
cursor: pointer;
|
||||
transition: background 0.15s ease, color 0.15s ease;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.calc-step-btn:first-child {
|
||||
border-radius: 8px 0 0 8px;
|
||||
}
|
||||
|
||||
.calc-step-btn:last-child {
|
||||
border-radius: 0 8px 8px 0;
|
||||
}
|
||||
|
||||
.calc-step-btn:hover {
|
||||
background: #a3c765;
|
||||
color: #fff;
|
||||
border-color: #a3c765;
|
||||
}
|
||||
|
||||
.calc-step-btn:active {
|
||||
background: #8ab34e;
|
||||
border-color: #8ab34e;
|
||||
}
|
||||
|
||||
.calc-step-value {
|
||||
width: 56px;
|
||||
height: 44px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
color: #0b0b0b;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.calc-duration-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.calc-dur-btn {
|
||||
padding: 14px 12px;
|
||||
border: 2px solid #e0e0e0;
|
||||
border-radius: 10px;
|
||||
background: #fff;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
|
||||
}
|
||||
|
||||
.calc-dur-btn:hover {
|
||||
border-color: #a3c765;
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.calc-dur-btn--active {
|
||||
border-color: #a3c765;
|
||||
background: #f0f9e8;
|
||||
}
|
||||
|
||||
.calc-dur-btn--best {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.calc-dur-period {
|
||||
display: block;
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
color: #0b0b0b;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.calc-dur-discount {
|
||||
display: block;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: #678731;
|
||||
margin-top: 2px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* Quote breakdown */
|
||||
|
||||
.calc-quote {
|
||||
background: #F9F9FA;
|
||||
border-radius: 12px;
|
||||
padding: 20px 24px;
|
||||
margin-top: 28px;
|
||||
}
|
||||
|
||||
.calc-line {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 6px 0;
|
||||
font-size: 14px;
|
||||
color: #515151;
|
||||
}
|
||||
|
||||
.calc-line--discount {
|
||||
color: #678731;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.calc-quote-total {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding-top: 12px;
|
||||
margin-top: 8px;
|
||||
border-top: 2px solid #e0e0e0;
|
||||
}
|
||||
|
||||
.calc-quote-total-label {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: #0b0b0b;
|
||||
}
|
||||
|
||||
.calc-quote-total-amount {
|
||||
font-size: 2em;
|
||||
font-weight: 700;
|
||||
color: #0b0b0b;
|
||||
}
|
||||
|
||||
.calc-quote-effective {
|
||||
text-align: right;
|
||||
font-size: 13px;
|
||||
color: #678731;
|
||||
font-weight: 500;
|
||||
margin-top: 4px;
|
||||
min-height: 18px;
|
||||
}
|
||||
|
||||
/* What's included */
|
||||
|
||||
.calc-included {
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.calc-included-title {
|
||||
font-size: 1.2em;
|
||||
font-weight: 700;
|
||||
color: #0b0b0b;
|
||||
margin: 0 0 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.calc-included-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.calc-included-item {
|
||||
font-size: 15px;
|
||||
color: #333;
|
||||
padding: 8px 0;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.calc-included-item .landing-check {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
/* ---- Final CTA ---- */
|
||||
|
||||
.landing-final-cta {
|
||||
|
|
@ -445,6 +666,18 @@ a.mps-button.landing-cta-large {
|
|||
.nav-grid .nav {
|
||||
padding: 16px 40px;
|
||||
}
|
||||
|
||||
.calc-card {
|
||||
padding: 40px 32px;
|
||||
}
|
||||
|
||||
.calc-duration-grid {
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
|
||||
.calc-included-grid {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
|
|
|
|||
330
pricing.html
Normal file
330
pricing.html
Normal file
|
|
@ -0,0 +1,330 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
|
||||
<title>Pricing Calculator — Make Post Sell</title>
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="theme-color" content="#5871ad">
|
||||
<meta name="description" content="Calculate your Make Post Sell plan. $14/month per shop per seat. Save up to 42% with multi-year plans. Custom domains included.">
|
||||
|
||||
<link rel="stylesheet" href="tokens.css">
|
||||
<link rel="stylesheet" href="common.css">
|
||||
<link rel="stylesheet" href="mps.css">
|
||||
<link rel="stylesheet" href="landing.css">
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="message-ribbon">
|
||||
Open source & public domain — no moat, no castle, just infrastructure that outlasts its builders
|
||||
</div>
|
||||
|
||||
<noscript>
|
||||
<style>
|
||||
.js-only {display: none;}
|
||||
</style>
|
||||
</noscript>
|
||||
|
||||
<section class="main">
|
||||
|
||||
<section class="nav-grid">
|
||||
<section class="nav">
|
||||
<section class="logo">
|
||||
<a href="/"><img class="logo" src="/static/mps.png" /></a>
|
||||
</section>
|
||||
<section class="middle"></section>
|
||||
<section class="log-in">
|
||||
<a href="https://blog.makepostsell.com/">Blog</a>
|
||||
<a href="https://my.makepostsell.com/u/settings" class="avoid-wrap">My Account</a>
|
||||
<a href="https://my.makepostsell.com/s/new" target="_blank" class="nav-cta avoid-wrap">Open a Shop</a>
|
||||
</section>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
<section class="content landing-content">
|
||||
|
||||
<!-- ======== HERO ======== -->
|
||||
<section class="landing-hero" style="padding-bottom: 40px;">
|
||||
<div class="landing-hero-inner">
|
||||
<h1 class="landing-hero-title">Pricing Calculator</h1>
|
||||
<p class="landing-hero-subtitle">$14/month per shop, per seat. Save up to 42% with multi-year plans.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ======== CALCULATOR ======== -->
|
||||
<section class="landing-section landing-section-alt">
|
||||
<div class="one-column landing-pricing-container">
|
||||
|
||||
<div class="calc-card">
|
||||
|
||||
<!-- Shops -->
|
||||
<div class="calc-row">
|
||||
<div class="calc-field">
|
||||
<label class="calc-label">Shops</label>
|
||||
<p class="calc-hint">Each shop gets its own brand, products, custom domain, and audience.</p>
|
||||
<div class="calc-stepper">
|
||||
<button type="button" class="calc-step-btn" onclick="adjustShops(-1)">−</button>
|
||||
<span class="calc-step-value" id="shops-value">1</span>
|
||||
<button type="button" class="calc-step-btn" onclick="adjustShops(1)">+</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Seats per shop -->
|
||||
<div class="calc-row">
|
||||
<div class="calc-field">
|
||||
<label class="calc-label">Seats per shop</label>
|
||||
<p class="calc-hint">Owners, editors, and machine learning agents. Each seat is $14/month.</p>
|
||||
<div class="calc-stepper">
|
||||
<button type="button" class="calc-step-btn" onclick="adjustSeats(-1)">−</button>
|
||||
<span class="calc-step-value" id="seats-value">1</span>
|
||||
<button type="button" class="calc-step-btn" onclick="adjustSeats(1)">+</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Duration -->
|
||||
<div class="calc-row">
|
||||
<div class="calc-field">
|
||||
<label class="calc-label">Duration</label>
|
||||
<div class="calc-duration-grid">
|
||||
<button type="button" class="calc-dur-btn calc-dur-btn--active" onclick="setDuration(1, this)">
|
||||
<span class="calc-dur-period">Monthly</span>
|
||||
</button>
|
||||
<button type="button" class="calc-dur-btn" onclick="setDuration(12, this)">
|
||||
<span class="calc-dur-period">1 Year</span>
|
||||
<span class="calc-dur-discount">Save 14%</span>
|
||||
</button>
|
||||
<button type="button" class="calc-dur-btn" onclick="setDuration(24, this)">
|
||||
<span class="calc-dur-period">2 Years</span>
|
||||
<span class="calc-dur-discount">Save 28%</span>
|
||||
</button>
|
||||
<button type="button" class="calc-dur-btn calc-dur-btn--best" onclick="setDuration(36, this)">
|
||||
<span class="calc-dur-period">3 Years</span>
|
||||
<span class="calc-dur-discount">Save 42%</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Quote -->
|
||||
<div class="calc-quote" id="calc-quote">
|
||||
<div class="calc-quote-breakdown" id="calc-breakdown"></div>
|
||||
<div class="calc-quote-total">
|
||||
<span class="calc-quote-total-label">Total</span>
|
||||
<span class="calc-quote-total-amount" id="calc-total">$14</span>
|
||||
</div>
|
||||
<div class="calc-quote-effective" id="calc-effective"></div>
|
||||
</div>
|
||||
|
||||
<!-- CTA -->
|
||||
<div class="landing-cta-group" style="margin-top: 24px;">
|
||||
<a href="https://my.makepostsell.com/s/new" target="_blank" class="shop-new-button mps-button landing-cta">+ Open a Shop</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- What's included -->
|
||||
<div class="calc-included">
|
||||
<h3 class="calc-included-title">Every shop includes</h3>
|
||||
<div class="calc-included-grid">
|
||||
<div class="calc-included-item"><span class="landing-check">✔</span> Custom domain</div>
|
||||
<div class="calc-included-item"><span class="landing-check">✔</span> Five payment methods</div>
|
||||
<div class="calc-included-item"><span class="landing-check">✔</span> Watch mode & media channel</div>
|
||||
<div class="calc-included-item"><span class="landing-check">✔</span> Analytics dashboard</div>
|
||||
<div class="calc-included-item"><span class="landing-check">✔</span> Email subscriptions & feeds</div>
|
||||
<div class="calc-included-item"><span class="landing-check">✔</span> Zero commission fees</div>
|
||||
<div class="calc-included-item"><span class="landing-check">✔</span> Digital & physical products</div>
|
||||
<div class="calc-included-item"><span class="landing-check">✔</span> Coupons & bundles</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ======== FINAL CTA ======== -->
|
||||
<section class="landing-section landing-final-cta">
|
||||
<div class="one-column">
|
||||
<h2 class="landing-section-title">Ready to make, post, and sell?</h2>
|
||||
<div class="landing-cta-group">
|
||||
<a href="https://my.makepostsell.com/s/new" target="_blank" class="shop-new-button mps-button landing-cta landing-cta-large">+ Open a Shop</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- content -->
|
||||
</section>
|
||||
|
||||
<!-- main -->
|
||||
</section>
|
||||
|
||||
<footer class="mps-footer">
|
||||
<div class="mps-footer-grid">
|
||||
|
||||
<div class="mps-footer-brand">
|
||||
<a href="/" class="mps-footer-logo">Make Post Sell</a>
|
||||
<p class="mps-footer-tagline">
|
||||
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>
|
||||
|
||||
<div class="mps-footer-group">
|
||||
<span class="mps-footer-group-title">Get Started</span>
|
||||
<nav class="mps-footer-links">
|
||||
<a href="https://blog.makepostsell.com/c/0b408430-3a2a-11ef-8208-c3d535a3beac/how-to-create-a-new-shop-on-makepostsell">Create a Shop</a>
|
||||
<a href="https://blog.makepostsell.com/c/83c41f98-3a2f-11ef-8208-c3d535a3beac/how-to-create-a-new-product-on-makepostsell">Create a Product</a>
|
||||
<a href="https://blog.makepostsell.com/c/59c8c980-3a3b-11ef-8208-c3d535a3beac/how-to-create-new-content-on-makepostsell">Create Content</a>
|
||||
<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 Bundle</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="mps-footer-group">
|
||||
<span class="mps-footer-group-title">Resources</span>
|
||||
<nav class="mps-footer-links">
|
||||
<a href="https://blog.makepostsell.com/">Blog</a>
|
||||
<a href="https://git.unturf.com/engineering/make-post-sell/make_post_sell" target="_blank">Source Code</a>
|
||||
<a href="https://pypi.org/project/make-post-sell/" target="_blank">PyPi</a>
|
||||
<a href="/styleguide.html">Style Guide</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="mps-footer-group">
|
||||
<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">Open a Shop</a>
|
||||
<a href="/pricing.html">Pricing Calculator</a>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="mps-footer-ctas">
|
||||
<a href="https://my.makepostsell.com/s/new" class="shop-new-button mps-button avoid-wrap">+ Open a Shop</a>
|
||||
<a href="https://git.unturf.com/engineering/make-post-sell/make_post_sell" target="_blank" class="source-button mps-button avoid-wrap">✐ Contribute Code</a>
|
||||
</div>
|
||||
|
||||
<div class="mps-footer-bottom">
|
||||
makepostsell.com © 2026 — Public domain software by <a href="https://www.unturf.com/software/" target="_blank">unturf.com</a>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
(function() {
|
||||
var SEAT_PRICE = 14;
|
||||
var state = { shops: 1, seats: 1, months: 1 };
|
||||
|
||||
function getDiscount(months) {
|
||||
if (months === 12) return 14;
|
||||
if (months === 24) return 28;
|
||||
if (months === 36) return 42;
|
||||
return 0;
|
||||
}
|
||||
|
||||
function getDurationLabel(months) {
|
||||
if (months === 1) return '/month';
|
||||
if (months === 12) return '/year';
|
||||
if (months === 24) return '/2 years';
|
||||
if (months === 36) return '/3 years';
|
||||
return '';
|
||||
}
|
||||
|
||||
function calculate() {
|
||||
var shops = state.shops;
|
||||
var seats = state.seats;
|
||||
var months = state.months;
|
||||
var discountPct = getDiscount(months);
|
||||
|
||||
var monthlyPerShop = SEAT_PRICE * seats;
|
||||
var monthlyTotal = monthlyPerShop * shops;
|
||||
var subtotal = monthlyTotal * months;
|
||||
var discount = Math.round(subtotal * discountPct / 100);
|
||||
var total = subtotal - discount;
|
||||
|
||||
// Breakdown
|
||||
var breakdown = '';
|
||||
|
||||
if (shops === 1 && seats === 1) {
|
||||
breakdown = '<div class="calc-line">' +
|
||||
'<span>1 shop, 1 seat</span>' +
|
||||
'<span>$' + SEAT_PRICE + '/mo</span>' +
|
||||
'</div>';
|
||||
} else if (shops === 1) {
|
||||
breakdown = '<div class="calc-line">' +
|
||||
'<span>1 shop × ' + seats + ' seats</span>' +
|
||||
'<span>$' + monthlyPerShop + '/mo</span>' +
|
||||
'</div>';
|
||||
} else if (seats === 1) {
|
||||
breakdown = '<div class="calc-line">' +
|
||||
'<span>' + shops + ' shops × 1 seat</span>' +
|
||||
'<span>$' + monthlyTotal + '/mo</span>' +
|
||||
'</div>';
|
||||
} else {
|
||||
breakdown = '<div class="calc-line">' +
|
||||
'<span>' + shops + ' shops × ' + seats + ' seats</span>' +
|
||||
'<span>$' + monthlyTotal + '/mo</span>' +
|
||||
'</div>';
|
||||
}
|
||||
|
||||
if (months > 1) {
|
||||
breakdown += '<div class="calc-line">' +
|
||||
'<span>× ' + months + ' months</span>' +
|
||||
'<span>$' + subtotal.toLocaleString() + '</span>' +
|
||||
'</div>';
|
||||
}
|
||||
|
||||
if (discount > 0) {
|
||||
breakdown += '<div class="calc-line calc-line--discount">' +
|
||||
'<span>Discount (' + discountPct + '% off)</span>' +
|
||||
'<span>−$' + discount.toLocaleString() + '</span>' +
|
||||
'</div>';
|
||||
}
|
||||
|
||||
document.getElementById('calc-breakdown').innerHTML = breakdown;
|
||||
document.getElementById('calc-total').textContent = '$' + total.toLocaleString();
|
||||
|
||||
// Effective monthly
|
||||
var effective = '';
|
||||
if (months > 1) {
|
||||
var effMonthly = (total / months).toFixed(2);
|
||||
effective = '<span>Effective: $' + effMonthly + '/mo';
|
||||
if (shops > 1 || seats > 1) {
|
||||
var effPerSeat = (total / months / shops / seats).toFixed(2);
|
||||
effective += ' ($' + effPerSeat + '/seat/mo)';
|
||||
}
|
||||
effective += '</span>';
|
||||
}
|
||||
document.getElementById('calc-effective').innerHTML = effective;
|
||||
}
|
||||
|
||||
window.adjustShops = function(delta) {
|
||||
state.shops = Math.max(1, Math.min(50, state.shops + delta));
|
||||
document.getElementById('shops-value').textContent = state.shops;
|
||||
calculate();
|
||||
};
|
||||
|
||||
window.adjustSeats = function(delta) {
|
||||
state.seats = Math.max(1, Math.min(50, state.seats + delta));
|
||||
document.getElementById('seats-value').textContent = state.seats;
|
||||
calculate();
|
||||
};
|
||||
|
||||
window.setDuration = function(months, btn) {
|
||||
state.months = months;
|
||||
var btns = document.querySelectorAll('.calc-dur-btn');
|
||||
for (var i = 0; i < btns.length; i++) {
|
||||
btns[i].classList.remove('calc-dur-btn--active');
|
||||
}
|
||||
btn.classList.add('calc-dur-btn--active');
|
||||
calculate();
|
||||
};
|
||||
|
||||
calculate();
|
||||
})();
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue