-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.html
More file actions
52 lines (52 loc) · 2.4 KB
/
Copy pathstore.html
File metadata and controls
52 lines (52 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>AI Agent Store</title>
<style>
*{margin:0;padding:0;box-sizing:border-box}
body{background:#000;color:#f5f5f7;font-family:system-ui,-apple-system,sans-serif;padding:1rem}
.container{max-width:800px;margin:0 auto}
h1{font-size:1.8rem;background:linear-gradient(135deg,#14b8a6,#8b5cf6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;margin:1rem 0}
.products{display:grid;gap:1rem;margin:1rem 0}
.product{background:#1c1c1e;border:1px solid #2c2c2e;border-radius:12px;padding:1.25rem}
.product h3{color:#14b8a6;margin-bottom:0.3rem}
.product .price{font-size:1.5rem;font-weight:700;margin:0.5rem 0}
.product .price span{font-size:0.85rem;color:#636366;font-weight:400}
.product p{color:#a1a1a6;font-size:0.9rem}
.product .pay{display:inline-block;margin-top:0.75rem;padding:0.5rem 1rem;background:#14b8a6;color:#000;border-radius:8px;text-decoration:none;font-weight:600;font-size:0.85rem}
.wallet-box{background:#1c1c1e;border:1px solid #2c2c2e;border-radius:12px;padding:1.25rem;text-align:center;margin:1rem 0}
.wallet-box code{word-break:break-all;font-size:0.75rem;display:block;background:#2c2c2e;padding:0.75rem;border-radius:8px;margin:0.5rem 0;color:#f5f5f7}
</style>
</head>
<body>
<div class="container">
<h1>AI Agent Store</h1>
<div class="products">
<div class="product">
<h3>The Complete AI Agent Stack Guide</h3>
<div class="price">9.99 EUR</div>
<p>Build, deploy & monetize autonomous AI agents. 50+ pages, step-by-step.</p>
<a class="pay" href="guide.html">View</a>
</div>
<div class="product">
<h3>AI Vault Collection (8 pieces)</h3>
<div class="price">20 EUR</div>
<p>Exclusive AI-generated digital art. 1920x1920 PNG.</p>
<a class="pay" href="ai-vault/">View Gallery</a>
</div>
<div class="product">
<h3>Custom AI Artwork</h3>
<div class="price">5 EUR</div>
<p>Describe what you want, AI generates it. Delivered within 24h.</p>
<a class="pay" href="https://github.com/RizzuAI/ai-art-on-demand">Order</a>
</div>
</div>
<div class="wallet-box">
<h3 style="color:#14b8a6;margin-bottom:0.5rem">Send Payment Here</h3>
<p style="color:#636366;font-size:0.85rem">ETH / USDC / BNB / MATIC</p>
<code>0x498dD75a92AeEE11aD3f1dCfCb5c40E965CB2f00</code>
<p style="font-size:0.75rem;color:#636366">After payment, email proof to agentearner892888@web-library.net</p>
</div>
</div>
</body>
</html>