Files
kickassmarket/marketplace.html

467 lines
22 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>Browse AI Products & Services | KickAssMarket</title>
<meta name="description" content="Browse 500+ AI products and services. Prompts, APIs, agents, compute, datasets and more. Secure escrow checkout, USDC & fiat payments.">
<meta name="robots" content="index, follow">
<meta property="og:title" content="AI Marketplace - Browse Products | KickAssMarket">
<meta property="og:description" content="Browse AI products and services. Prompts, APIs, agents, compute, and more.">
<link rel="canonical" href="https://kickassmarket.com/marketplace">
<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">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "CollectionPage",
"name": "AI Products Marketplace",
"description": "Browse AI products, services, APIs, prompts and agents",
"url": "https://kickassmarket.com/marketplace",
"mainEntity": {
"@type": "ItemList",
"itemListElement": [
{"@type": "Product", "name": "Claude 100K Context Bundle", "offers": {"@type": "Offer", "price": "49", "priceCurrency": "USD"}},
{"@type": "Product", "name": "Realtime AI Inference API", "offers": {"@type": "Offer", "price": "99", "priceCurrency": "USD"}}
]
}
}
</script>
<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, nav a.active { color: var(--text); }
.nav-cta { background: var(--primary); color: white !important; padding: 0.6rem 1.5rem; border-radius: 8px; transition: all 0.3s; }
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }
.page-header { padding: 120px 5% 3rem; text-align: center; background: linear-gradient(180deg, rgba(99,102,241,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; }
.filters { padding: 1.5rem 5%; border-bottom: 1px solid var(--border); position: sticky; top: 72px; background: var(--bg-dark); z-index: 100; }
.filters-inner { max-width: 1400px; margin: 0 auto; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.filter-cats { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.filter-btn { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-muted); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.search-box { display: flex; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 0 1rem; }
.search-box input { background: none; border: none; outline: none; color: var(--text); padding: 0.6rem 0; font-size: 0.9rem; width: 200px; }
.search-box input::placeholder { color: var(--text-muted); }
.search-box svg { stroke: var(--text-muted); }
.marketplace { padding: 3rem 5%; max-width: 1400px; margin: 0 auto; }
.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; color: var(--text-muted); font-size: 0.9rem; }
.sort-select { background: var(--bg-card); border: 1px solid var(--border); color: var(--text); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.85rem; cursor: pointer; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(99,102,241,0.4); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.product-image { height: 160px; background: linear-gradient(135deg, var(--bg-card-hover) 0%, var(--bg-card) 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.product-badge { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.6rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.badge-new { background: var(--secondary); color: var(--bg-dark); }
.badge-hot { background: var(--cta); color: var(--bg-dark); }
.badge-bestseller { background: var(--primary); color: white; }
.badge-api { background: #10B981; color: white; }
.product-icon { width: 56px; height: 56px; background: rgba(99,102,241,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.product-icon svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 1.5; }
.product-info { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: 0.75rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.product-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.product-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.product-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border); }
.product-price { font-family: 'Space Grotesk', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--cta); }
.product-price span { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.product-btn { background: var(--primary); color: white; padding: 0.5rem 1.25rem; border-radius: 8px; font-size: 0.85rem; font-weight: 600; transition: all 0.2s; border: none; cursor: pointer; }
.product-btn:hover { background: var(--primary-dark); }
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.page-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; }
.page-btn:hover, .page-btn.active { background: var(--primary); border-color: var(--primary); }
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: 768px) {
nav ul { display: none; }
.filters-inner { flex-direction: column; align-items: stretch; }
.filter-cats { overflow-x: auto; padding-bottom: 0.5rem; }
.search-box { width: 100%; }
.search-box input { width: 100%; }
}
</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" class="active">Marketplace</a></li>
<li><a href="sell.html">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>AI Marketplace</h1>
<p>Browse 500+ AI products, services, APIs, and tools. Every transaction secured by escrow.</p>
</div>
<div class="filters">
<div class="filters-inner">
<div class="filter-cats">
<button class="filter-btn active">All</button>
<button class="filter-btn">Prompts</button>
<button class="filter-btn">APIs</button>
<button class="filter-btn">Agents</button>
<button class="filter-btn">Compute</button>
<button class="filter-btn">Datasets</button>
<button class="filter-btn">Tools</button>
</div>
<div class="search-box">
<svg width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>
<input type="text" placeholder="Search AI products...">
</div>
</div>
</div>
<div class="marketplace">
<div class="results-bar">
<span>Showing 18 of 523 products</span>
<select class="sort-select">
<option>Sort by: Trending</option>
<option>Price: Low to High</option>
<option>Price: High to Low</option>
<option>Newest First</option>
</select>
</div>
<div class="product-grid">
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-bestseller">Bestseller</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8z"/><circle cx="12" cy="12" r="3"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Prompts</div>
<h3>Claude 100K Context Bundle</h3>
<p>50 production-tested prompts optimized for long-context reasoning tasks</p>
<div class="product-footer">
<div class="product-price">$49 <span>one-time</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-new">New</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">APIs</div>
<h3>Realtime AI Inference API</h3>
<p>Sub-50ms latency endpoints for GPT-4 and Claude. 10K requests/month</p>
<div class="product-footer">
<div class="product-price">$99 <span>/mo</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-hot">Hot</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Agents</div>
<h3>Research Agent Pack</h3>
<p>5 autonomous research agents for market analysis and reporting</p>
<div class="product-footer">
<div class="product-price">$199 <span>one-time</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Compute</div>
<h3>A100 GPU Instances</h3>
<p>80GB VRAM, per-hour billing, instant deployment worldwide</p>
<div class="product-footer">
<div class="product-price">$2.50 <span>/hr</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-api">API</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">APIs</div>
<h3>Image Generation API</h3>
<p>Flux Pro, DALL-E 3, Stable Diffusion. 1000 images/month included</p>
<div class="product-footer">
<div class="product-price">$79 <span>/mo</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M4 6h16M4 12h16M4 18h16"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Prompts</div>
<h3>Sales Copywriting Prompts</h3>
<p>200 high-converting sales prompts for cold outreach and follow-ups</p>
<div class="product-footer">
<div class="product-price">$29 <span>one-time</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-new">New</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Tools</div>
<h3>VectorDB Management Suite</h3>
<p>Pinecone, Weaviate, Qdrant management dashboard with analytics</p>
<div class="product-footer">
<div class="product-price">$149 <span>/mo</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Datasets</div>
<h3>Financial News Dataset</h3>
<p>10M+ labeled financial news articles for sentiment and market prediction</p>
<div class="product-footer">
<div class="product-price">$399 <span>one-time</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-hot">Hot</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8z"/><path d="M12 6v6l4 2"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Agents</div>
<h3>Coding Agent Pro</h3>
<p>Autonomous coding agent for bug fixes, refactoring, and feature development</p>
<div class="product-footer">
<div class="product-price">$299 <span>/mo</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">APIs</div>
<h3>TTS Voice API</h3>
<p>ElevenLabs-quality voices, 128 languages, streaming audio support</p>
<div class="product-footer">
<div class="product-price">$49 <span>/mo</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-bestseller">Popular</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M4 6h16M4 12h16M4 18h16"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Prompts</div>
<h3>SEO Content Bundle</h3>
<p>300 prompts for blog posts, meta descriptions, and content optimization</p>
<div class="product-footer">
<div class="product-price">$39 <span>one-time</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Compute</div>
<h3>H100 Cluster Access</h3>
<p>8x H100 nodes for distributed training. Minimum 1 hour rental</p>
<div class="product-footer">
<div class="product-price">$18 <span>/hr</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-hot">HostPioneers</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Hosting</div>
<h3>AI Agent VPS</h3>
<p>Pre-installed Ollama, OpenWebUI, and AI tools. VPS optimized for running AI agents 24/7</p>
<div class="product-footer">
<div class="product-price">$29 <span>/mo</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-new">HostPioneers</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Security</div>
<h3>SSL Certificates</h3>
<p>Let's Encrypt and Cloudflare Origin CA certificates. Auto-renewal included</p>
<div class="product-footer">
<div class="product-price">Free <span>/year</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-api">HostPioneers</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Domains</div>
<h3>Domain Registration</h3>
<p>.com, .ai, .agent, .io domains. DNS management and transfer services</p>
<div class="product-footer">
<div class="product-price">$12 <span>/yr</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-hot">HostPioneers</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8z"/><circle cx="12" cy="12" r="5"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">AI Voice</div>
<h3>Voice AI Agent</h3>
<p>AI-powered voice agent with ElevenLabs streaming. Handle calls 24/7 automatically</p>
<div class="product-footer">
<div class="product-price">$149 <span>/mo</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-bestseller">HostPioneers</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M4 6h16M4 12h16M4 18h16"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Hosting</div>
<h3>AI Web Hosting</h3>
<p>WordPress, Next.js, and static hosting with global CDN. 99.9% uptime SLA</p>
<div class="product-footer">
<div class="product-price">$9 <span>/mo</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
<div class="product-card">
<div class="product-image">
<span class="product-badge badge-api">HostPioneers</span>
<div class="product-icon"><svg viewBox="0 0 24 24"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></svg></div>
</div>
<div class="product-info">
<div class="product-cat">Email</div>
<h3>Business Email</h3>
<p>Custom domain email with 99.9% uptime. Calendars, Drive, and 2FA included</p>
<div class="product-footer">
<div class="product-price">$5 <span>/user/mo</span></div>
<button class="product-btn">View</button>
</div>
</div>
</div>
</div>
<div class="pagination">
<button class="page-btn active">1</button>
<button class="page-btn">2</button>
<button class="page-btn">3</button>
<button class="page-btn">4</button>
<button class="page-btn">...</button>
<button class="page-btn">52</button>
</div>
</div>
<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>