-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
133 lines (130 loc) · 4.81 KB
/
Copy pathblog.html
File metadata and controls
133 lines (130 loc) · 4.81 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blog — Claw Is Open</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link href="https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<nav>
<div class="nav-wrap">
<a href="index.html" class="nav-logo">
<div class="logo-mark">🦞</div>
Claw Is Open
</a>
<div class="nav-center">
<a href="marketplace.html">Browse</a>
<a href="marketplace.html#categories">Categories</a>
<a href="creators.html">Creators</a>
<a href="index.html#how">How it works</a>
<a href="blog.html">Blog</a>
</div>
<div class="nav-right">
<a href="signin.html" class="btn btn-ghost">Log in</a>
<a href="signup.html" class="btn btn-dark">Sign up free</a>
</div>
</div>
</nav>
<section class="personas-section">
<div class="container">
<div class="s-head">
<div class="s-head-row">
<div>
<div class="s-label">News & Updates</div>
<h2 class="s-title">Blog</h2>
<p class="s-sub">Platform updates, creator spotlights, and tips for getting the most from AI assistants.</p>
</div>
</div>
</div>
<div class="blog-grid">
<a href="#" class="blog-card">
<div class="s-label">Feb 20, 2026</div>
<h3>1,200+ assistants now live on Claw Is Open</h3>
<p>We've hit a major milestone. Here's what's new in the marketplace and what's next.</p>
</a>
<a href="#" class="blog-card">
<div class="s-label">Feb 15, 2026</div>
<h3>Creator spotlight: Alex Rivera</h3>
<p>How a full-stack developer turned AI builder is helping startups with strategy personas.</p>
</a>
<a href="#" class="blog-card">
<div class="s-label">Feb 10, 2026</div>
<h3>New category: Legal & compliance</h3>
<p>Introducing vetted legal-review and compliance assistants. Always use with professional advice.</p>
</a>
<a href="#" class="blog-card">
<div class="s-label">Feb 5, 2026</div>
<h3>Stripe checkout is live</h3>
<p>Secure payments and instant delivery for paid personas and skills. One-click purchase.</p>
</a>
<a href="#" class="blog-card">
<div class="s-label">Jan 28, 2026</div>
<h3>API v2: Webhooks and bulk upload</h3>
<p>Creators can now sync entire catalogs and get real-time notifications on sales.</p>
</a>
<a href="#" class="blog-card">
<div class="s-label">Jan 20, 2026</div>
<h3>Top 10 AI personas for small teams</h3>
<p>Curated list of the most popular assistants for startups and small businesses.</p>
</a>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-grid">
<div class="footer-brand">
<a href="index.html" class="nav-logo">
<div class="logo-mark">🦞</div>
Claw Is Open
</a>
<p>The premier marketplace for pre-built AI personas and skills. Find the perfect assistant for any task.</p>
<div class="footer-social">
<div class="soc-btn">𝕏</div>
<div class="soc-btn">in</div>
<div class="soc-btn">▶</div>
<div class="soc-btn">@</div>
</div>
</div>
<div class="footer-col">
<h4>Marketplace</h4>
<ul>
<li><a href="marketplace.html">Browse All</a></li>
<li><a href="marketplace.html">AI Personas</a></li>
<li><a href="marketplace.html">AI Skills</a></li>
<li><a href="marketplace.html">Free Tier</a></li>
<li><a href="marketplace.html">New Arrivals</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Creators</h4>
<ul>
<li><a href="sellers.html">Start Selling</a></li>
<li><a href="sellers.html">Creator API</a></li>
<li><a href="sellers.html#pricing">Pricing & Fees</a></li>
<li><a href="sellers.html">Creator Hub</a></li>
<li><a href="sellers.html#docs">Documentation</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Company</h4>
<ul>
<li><a href="index.html#how">About Us</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="blog.html">Careers</a></li>
<li><a href="blog.html">Privacy Policy</a></li>
<li><a href="blog.html">Terms of Service</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 Claw Is Open. All rights reserved.</p>
<p>Built for the AI-native web.</p>
</div>
</div>
</footer>
</body>
</html>