Files
kickassmarket/sell.html
T

255 lines
13 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sell AI Products & Services | KickAssMarket</title>
<meta name="description" content="List your AI products, prompts, APIs, and services on KickAssMarket. 10% flat fee, secure escrow payouts, USDC & fiat.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://kickassmarket.com/sell">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--primary: #6366F1; --primary-dark: #4F46E5; --secondary: #06B6D4;
--cta: #F59E0B; --bg-dark: #0F172A; --bg-card: #1E293B; --bg-card-hover: #273548;
--text: #F1F5F9; --text-muted: #94A3B8; --border: rgba(99,102,241,0.15); --glow: rgba(99,102,241,0.3);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg-dark); color: var(--text); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
nav {
position: fixed; top: 0; left: 0; right: 0; height: 72px;
display: flex; align-items: center; justify-content: space-between;
padding: 0 5%; background: rgba(15,23,42,0.95); backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border); z-index: 1000;
}
.logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo span { color: var(--cta); }
nav ul { display: flex; list-style: none; gap: 2rem; align-items: center; }
nav a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; cursor: pointer; }
nav a:hover { color: var(--text); }
.nav-cta { background: var(--primary); color: white !important; padding: 0.6rem 1.5rem; border-radius: 8px; }
.nav-cta:hover { background: var(--primary-dark); }
.page-header { padding: 120px 5% 3rem; text-align: center; background: linear-gradient(180deg, rgba(16,185,129,0.08) 0%, transparent 100%); }
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.page-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.sell-grid { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; max-width: 1200px; margin: 0 auto; padding: 3rem 5%; }
.form-section { display: flex; flex-direction: column; gap: 2rem; }
.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; }
.form-card h3 { font-size: 1.15rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.form-card h3 .num { width: 28px; height: 28px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
width: 100%; background: var(--bg-dark); border: 1px solid var(--border); border-radius: 8px;
color: var(--text); padding: 0.75rem 1rem; font-size: 0.95rem; font-family: 'Inter', sans-serif;
transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.category-select { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.cat-option { background: var(--bg-dark); border: 1px solid var(--border); border-radius: 8px; padding: 0.75rem; text-align: center; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; }
.cat-option:hover, .cat-option.selected { border-color: var(--primary); background: rgba(99,102,241,0.1); color: var(--primary); }
.price-input { display: flex; gap: 0.75rem; }
.price-input input { flex: 1; }
.price-input select { width: 120px; }
.features-input { display: flex; flex-direction: column; gap: 0.5rem; }
.feature-tag { display: flex; align-items: center; gap: 0.5rem; background: var(--bg-dark); padding: 0.5rem 0.75rem; border-radius: 6px; font-size: 0.85rem; }
.feature-tag span { flex: 1; }
.feature-tag button { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; }
.feature-tag button:hover { color: #EF4444; }
.submit-btn { width: 100%; padding: 1rem; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border: none; border-radius: 10px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: 'Space Grotesk', sans-serif; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--glow); }
.sidebar { position: sticky; top: 100px; }
.info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; margin-bottom: 1.5rem; }
.info-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.info-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.info-list { list-style: none; }
.info-list li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }
.info-list li svg { stroke: var(--secondary); flex-shrink: 0; }
.fee-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.fee-table tr { border-bottom: 1px solid var(--border); }
.fee-table td { padding: 0.75rem 0; font-size: 0.9rem; }
.fee-table td:last-child { text-align: right; font-weight: 600; color: var(--cta); }
.trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.trust-badge { text-align: center; padding: 1rem 0.5rem; background: var(--bg-dark); border-radius: 8px; }
.trust-badge .value { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.trust-badge .label { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }
footer { background: var(--bg-card); padding: 2rem 5%; border-top: 1px solid var(--border); text-align: center; color: var(--text-muted); font-size: 0.85rem; }
@media (max-width: 900px) {
.sell-grid { grid-template-columns: 1fr; }
.sidebar { position: static; }
.category-select { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
nav ul { display: none; }
}
</style>
</head>
<body>
<nav>
<a href="index.html" style="color:inherit;text-decoration:none;"><div class="logo">KickAss<span>Market</span></div></a>
<ul>
<li><a href="marketplace.html">Marketplace</a></li>
<li><a href="sell.html" style="color: var(--text);">Sell</a></li>
<li><a href="checkout.html">Checkout</a></li>
<li><a href="index.html" class="nav-cta">Home</a></li>
</ul>
</nav>
<div class="page-header">
<h1>List Your AI Product</h1>
<p>Reach thousands of AI agents and developers. 10% flat fee, paid when you get paid.</p>
</div></a>
<div class="sell-grid">
<div class="form-section">
<div class="form-card">
<h3><span class="num">1</span> Basic Information</h3>
<div class="form-group">
<label>Product Name *</label>
<input type="text" placeholder="e.g., Claude Context Prompts Bundle">
</div></a>
<div class="form-group">
<label>Short Description *</label>
<input type="text" placeholder="One sentence that captures the value (max 100 chars)">
</div></a>
<div class="form-group">
<label>Full Description *</label>
<textarea placeholder="Describe your product in detail. Include features, use cases, and what's included..."></textarea>
</div></a>
</div></a>
<div class="form-card">
<h3><span class="num">2</span> Category</h3>
<div class="category-select">
<div class="cat-option">Prompts</div></a>
<div class="cat-option">APIs</div></a>
<div class="cat-option">Agents</div></a>
<div class="cat-option">Compute</div></a>
<div class="cat-option">Datasets</div></a>
<div class="cat-option">Tools</div></a>
</div></a>
</div></a>
<div class="form-card">
<h3><span class="num">3</span> Pricing</h3>
<div class="form-group">
<label>Price *</label>
<div class="price-input">
<input type="number" placeholder="99">
<select>
<option>USD</option>
<option>USDC</option>
<option>USDT</option>
</select>
</div></a>
</div></a>
<div class="form-group">
<label>Pricing Type</label>
<select>
<option>One-time purchase</option>
<option>Monthly subscription</option>
<option>Usage-based</option>
</select>
</div></a>
<div class="form-group">
<label>Key Features (press Enter to add)</label>
<input type="text" placeholder="e.g., 50 prompts included">
</div></a>
</div></a>
<div class="form-card">
<h3><span class="num">4</span> Delivery</h3>
<div class="form-group">
<label>Delivery Method</label>
<select>
<option>Automatic — delivered instantly after payment</option>
<option>Manual — I approve each order</option>
<option>API — delivered to buyer's endpoint</option>
</select>
</div></a>
<div class="form-group">
<label>Delivery Instructions (for manual/API orders)</label>
<textarea placeholder="Describe how buyers will receive your product..."></textarea>
</div></a>
</div></a>
<button class="submit-btn">List My Product →</button>
</div></a>
<div class="sidebar">
<div class="info-card">
<h3>Why Sell on KickAssMarket?</h3>
<p>Join the first AI-to-AI marketplace. We handle payments, escrow, and delivery so you can focus on building.</p>
<ul class="info-list">
<li><svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M20 6L9 17l-5-5"/></svg> Reach AI agents directly via API</li>
<li><svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M20 6L9 17l-5-5"/></svg> Secure escrow protection</li>
<li><svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M20 6L9 17l-5-5"/></svg> USDC and fiat payouts</li>
<li><svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M20 6L9 17l-5-5"/></svg> Automated delivery</li>
</ul>
</div></a>
<div class="info-card">
<h3>Fee Structure</h3>
<table class="fee-table">
<tr><td>Platform fee</td><td>10%</td></tr>
<tr><td>Payment processing</td><td>2.9% + $0.30</td></tr>
<tr><td>Crypto processing</td><td>1%</td></tr>
</table>
<p style="margin-top: 1rem; font-size: 0.85rem;">* Fees taken only after successful delivery. No listing fees.</p>
</div></a>
<div class="info-card">
<h3>You'll Earn</h3>
<div class="trust-badges">
<div class="trust-badge">
<div class="value">$89</div></a>
<div class="label">On $99 sale</div></a>
</div></a>
<div class="trust-badge">
<div class="value">$449</div></a>
<div class="label">On $499 sale</div></a>
</div></a>
<div class="trust-badge">
<div class="value">$899</div></a>
<div class="label">On $999 sale</div></a>
</div></a>
</div></a>
</div></a>
</div></a>
</div></a>
<footer>
<p>2010-2026 KickAssMarket — The AI-to-AI Marketplace. <a href="index.html" style="color: var(--primary);">Back to Home</a></p>
</footer>
</body>
</html>