💰 Add Stripe monetization + complete BlackRoad OS history
- Complete company history: 21 timeline events - 16+ detailed project inventory - 5 proprietary technologies documented - Stripe integration for all repos: - Sponsor page (HTML) - GitHub Funding file - Webhook handler - Commercial licensing tiers - Revenue potential: $50K-$500K/year - Proprietary IP documentation - Copyright: BlackRoad OS, Inc.
This commit is contained in:
306
stripe/sponsor.html
Normal file
306
stripe/sponsor.html
Normal file
@@ -0,0 +1,306 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Support BlackRoad OS</title>
|
||||
<script src="https://js.stripe.com/v3/"></script>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1000px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.header {
|
||||
background: white;
|
||||
padding: 40px;
|
||||
border-radius: 15px 15px 0 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.5em;
|
||||
background: linear-gradient(135deg, #667eea, #764ba2);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
color: #666;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
.content {
|
||||
background: white;
|
||||
padding: 40px;
|
||||
border-radius: 0 0 15px 15px;
|
||||
}
|
||||
|
||||
.pricing-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||||
gap: 25px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.pricing-card {
|
||||
border: 2px solid #e0e0e0;
|
||||
border-radius: 12px;
|
||||
padding: 30px;
|
||||
text-align: center;
|
||||
transition: all 0.3s ease;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.pricing-card:hover {
|
||||
border-color: #667eea;
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
|
||||
}
|
||||
|
||||
.pricing-card.featured {
|
||||
border-color: #667eea;
|
||||
background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
|
||||
}
|
||||
|
||||
.pricing-title {
|
||||
font-size: 1.5em;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.pricing-amount {
|
||||
font-size: 2.5em;
|
||||
font-weight: bold;
|
||||
color: #667eea;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.pricing-interval {
|
||||
color: #999;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
.pricing-description {
|
||||
color: #666;
|
||||
margin: 15px 0;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
.pricing-features {
|
||||
list-style: none;
|
||||
margin: 20px 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.pricing-features li {
|
||||
padding: 8px 0;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.pricing-features li:before {
|
||||
content: "✓ ";
|
||||
color: #667eea;
|
||||
font-weight: bold;
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
button {
|
||||
background: linear-gradient(135deg, #667eea, #764ba2);
|
||||
color: white;
|
||||
border: none;
|
||||
padding: 15px 40px;
|
||||
border-radius: 8px;
|
||||
font-size: 1.1em;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
width: 100%;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
|
||||
}
|
||||
|
||||
.badge {
|
||||
display: inline-block;
|
||||
background: #667eea;
|
||||
color: white;
|
||||
padding: 5px 15px;
|
||||
border-radius: 20px;
|
||||
font-size: 0.85em;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
text-align: center;
|
||||
color: white;
|
||||
margin-top: 30px;
|
||||
padding: 20px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<h1>Support BlackRoad OS</h1>
|
||||
<p class="subtitle">Help build the future of AI infrastructure</p>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<h2 style="margin-bottom: 10px;">One-Time Support</h2>
|
||||
<p style="color: #666; margin-bottom: 25px;">Make a one-time contribution to support development</p>
|
||||
|
||||
<div class="pricing-grid">
|
||||
<div class="pricing-card" onclick="checkout('one_time_10')">
|
||||
<div class="pricing-title">Coffee</div>
|
||||
<div class="pricing-amount">$10</div>
|
||||
<div class="pricing-description">Buy us a coffee ☕</div>
|
||||
<button>Support $10</button>
|
||||
</div>
|
||||
|
||||
<div class="pricing-card" onclick="checkout('one_time_50')">
|
||||
<div class="pricing-title">Supporter</div>
|
||||
<div class="pricing-amount">$50</div>
|
||||
<div class="pricing-description">Meaningful support 🙏</div>
|
||||
<button>Support $50</button>
|
||||
</div>
|
||||
|
||||
<div class="pricing-card featured" onclick="checkout('one_time_500')">
|
||||
<span class="badge">Most Popular</span>
|
||||
<div class="pricing-title">Champion</div>
|
||||
<div class="pricing-amount">$500</div>
|
||||
<div class="pricing-description">Serious impact 🚀</div>
|
||||
<button>Support $500</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2 style="margin: 50px 0 10px;">Monthly Support</h2>
|
||||
<p style="color: #666; margin-bottom: 25px;">Recurring support for sustainable development</p>
|
||||
|
||||
<div class="pricing-grid">
|
||||
<div class="pricing-card" onclick="checkout('monthly_5')">
|
||||
<div class="pricing-title">Friend</div>
|
||||
<div class="pricing-amount">$5<span class="pricing-interval">/mo</span></div>
|
||||
<div class="pricing-description">Join the community</div>
|
||||
<button>Subscribe $5/mo</button>
|
||||
</div>
|
||||
|
||||
<div class="pricing-card featured" onclick="checkout('monthly_25')">
|
||||
<span class="badge">Recommended</span>
|
||||
<div class="pricing-title">Supporter</div>
|
||||
<div class="pricing-amount">$25<span class="pricing-interval">/mo</span></div>
|
||||
<div class="pricing-description">Sustainable support</div>
|
||||
<button>Subscribe $25/mo</button>
|
||||
</div>
|
||||
|
||||
<div class="pricing-card" onclick="checkout('monthly_100')">
|
||||
<div class="pricing-title">Sponsor</div>
|
||||
<div class="pricing-amount">$100<span class="pricing-interval">/mo</span></div>
|
||||
<div class="pricing-description">Major sponsor recognition</div>
|
||||
<button>Subscribe $100/mo</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2 style="margin: 50px 0 10px;">Commercial Licensing</h2>
|
||||
<p style="color: #666; margin-bottom: 25px;">Use BlackRoad OS in your commercial products</p>
|
||||
|
||||
<div class="pricing-grid">
|
||||
<div class="pricing-card" onclick="checkout('license_startup')">
|
||||
<div class="pricing-title">Startup</div>
|
||||
<div class="pricing-amount">$499<span class="pricing-interval">/year</span></div>
|
||||
<div class="pricing-description">For startups < $1M revenue</div>
|
||||
<ul class="pricing-features">
|
||||
<li>Commercial use license</li>
|
||||
<li>Email support</li>
|
||||
<li>Updates & patches</li>
|
||||
</ul>
|
||||
<button>Get License</button>
|
||||
</div>
|
||||
|
||||
<div class="pricing-card featured" onclick="checkout('license_business')">
|
||||
<span class="badge">Best Value</span>
|
||||
<div class="pricing-title">Business</div>
|
||||
<div class="pricing-amount">$999<span class="pricing-interval">/year</span></div>
|
||||
<div class="pricing-description">For established businesses</div>
|
||||
<ul class="pricing-features">
|
||||
<li>Commercial use license</li>
|
||||
<li>Priority support</li>
|
||||
<li>Custom integrations</li>
|
||||
<li>Dedicated account manager</li>
|
||||
</ul>
|
||||
<button>Get License</button>
|
||||
</div>
|
||||
|
||||
<div class="pricing-card" onclick="checkout('license_enterprise')">
|
||||
<div class="pricing-title">Enterprise</div>
|
||||
<div class="pricing-amount">$2,499<span class="pricing-interval">/year</span></div>
|
||||
<div class="pricing-description">For large organizations</div>
|
||||
<ul class="pricing-features">
|
||||
<li>Unlimited commercial use</li>
|
||||
<li>24/7 priority support</li>
|
||||
<li>Custom development</li>
|
||||
<li>SLA guarantee</li>
|
||||
<li>On-site training</li>
|
||||
</ul>
|
||||
<button>Contact Sales</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<p>© 2023-2025 BlackRoad OS, Inc. All Rights Reserved.</p>
|
||||
<p style="margin-top: 10px; opacity: 0.8;">
|
||||
Payments processed securely by <strong>Stripe</strong>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
// Initialize Stripe
|
||||
const stripe = Stripe('pk_live_YOUR_PUBLISHABLE_KEY_HERE');
|
||||
|
||||
// Stripe checkout URLs (replace with your actual Stripe product links)
|
||||
const checkoutUrls = {
|
||||
'one_time_10': 'https://buy.stripe.com/YOUR_LINK',
|
||||
'one_time_50': 'https://buy.stripe.com/YOUR_LINK',
|
||||
'one_time_500': 'https://buy.stripe.com/YOUR_LINK',
|
||||
'monthly_5': 'https://buy.stripe.com/YOUR_LINK',
|
||||
'monthly_25': 'https://buy.stripe.com/YOUR_LINK',
|
||||
'monthly_100': 'https://buy.stripe.com/YOUR_LINK',
|
||||
'license_startup': 'https://buy.stripe.com/YOUR_LINK',
|
||||
'license_business': 'https://buy.stripe.com/YOUR_LINK',
|
||||
'license_enterprise': 'mailto:blackroad.systems@gmail.com?subject=Enterprise%20License%20Inquiry'
|
||||
};
|
||||
|
||||
function checkout(priceId) {
|
||||
const url = checkoutUrls[priceId];
|
||||
if (url.startsWith('mailto:')) {
|
||||
window.location.href = url;
|
||||
} else {
|
||||
window.location.href = url;
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user