Skip to content

Commit bdfe5d0

Browse files
michaeloboyleclaude
andcommitted
feat: Pivot to local-first positioning
- Update hero to emphasize local SQLite, not cloud hosting - Change badge from 'Beta' to 'Open Source • Local-First' - Update title: 'Build Graph Databases. With SQLite. Stay Local.' - Replace cloud connection example with local file example - Update stats: 100% Local-First, Zero Cloud Dependency, Pure SQLite - Link to GitHub instead of signup page 🤖 Generated with Claude Code (https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 2cde2ba commit bdfe5d0

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

landing-page/index.html

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -46,44 +46,44 @@
4646
<div class="container">
4747
<div class="hero-content">
4848
<div class="hero-badge">
49-
<span class="badge-icon">🚀</span>
50-
Now in Public Beta - Free Hobby Tier
49+
<span class="badge-icon">🔧</span>
50+
Open Source • Local-First • SQLite Native
5151
</div>
5252
<h1 class="hero-title">
53-
Graph Database.<br/>
54-
<span class="gradient-text">Zero Ops.</span><br/>
55-
Built on SQLite.
53+
Build Graph Databases.<br/>
54+
<span class="gradient-text">With SQLite.</span><br/>
55+
Stay Local.
5656
</h1>
5757
<p class="hero-description">
58-
Production-ready graph database with the simplicity of SQLite.
59-
Deploy in seconds, scale automatically, pay only for what you use.
58+
Visual tools for designing, debugging, and optimizing graph relationships in SQLite.
59+
Your data stays on your machine. Your queries stay fast.
6060
</p>
6161
<div class="hero-cta">
62-
<a href="#signup" class="btn btn-primary btn-large">
63-
Start Building Free
62+
<a href="https://github.com/michaeloboyle/sqlite-graph" class="btn btn-primary btn-large">
63+
Get Started Free
6464
<svg width="20" height="20" viewBox="0 0 20 20" fill="none">
6565
<path d="M7.5 15L12.5 10L7.5 5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
6666
</svg>
6767
</a>
68-
<a href="#demo" class="btn btn-secondary btn-large">
69-
Watch Demo
68+
<a href="examples/job-search.html" class="btn btn-secondary btn-large">
69+
Live Examples
7070
<svg width="20" height="20" viewBox="0 0 20 20" fill="none">
7171
<path d="M8 6L14 10L8 14V6Z" fill="currentColor"/>
7272
</svg>
7373
</a>
7474
</div>
7575
<div class="hero-stats">
7676
<div class="stat">
77-
<div class="stat-value">500x</div>
78-
<div class="stat-label">Smaller Footprint</div>
77+
<div class="stat-value">100%</div>
78+
<div class="stat-label">Local-First</div>
7979
</div>
8080
<div class="stat">
81-
<div class="stat-value">3000x</div>
82-
<div class="stat-label">Faster Startup</div>
81+
<div class="stat-value">Zero</div>
82+
<div class="stat-label">Cloud Dependency</div>
8383
</div>
8484
<div class="stat">
85-
<div class="stat-value">100%</div>
86-
<div class="stat-label">SQLite Compatible</div>
85+
<div class="stat-value">Pure</div>
86+
<div class="stat-label">SQLite</div>
8787
</div>
8888
</div>
8989
</div>
@@ -98,19 +98,19 @@ <h1 class="hero-title">
9898
<div class="code-content">
9999
<pre><code><span class="code-keyword">import</span> { GraphDatabase } <span class="code-keyword">from</span> <span class="code-string">'sqlite-graph'</span>;
100100

101-
<span class="code-comment">// Connect to managed cloud database</span>
101+
<span class="code-comment">// Connect to local SQLite file</span>
102102
<span class="code-keyword">const</span> db = <span class="code-keyword">new</span> <span class="code-function">GraphDatabase</span>(
103-
<span class="code-string">'cloud://your-db.sqlite-graph.io'</span>
103+
<span class="code-string">'./my-graph.db'</span>
104104
);
105105

106-
<span class="code-comment">// Query your graph</span>
106+
<span class="code-comment">// Query graph relationships</span>
107107
<span class="code-keyword">const</span> jobs = <span class="code-keyword">await</span> db
108108
.<span class="code-function">nodes</span>(<span class="code-string">'Job'</span>)
109109
.<span class="code-function">connectedTo</span>(<span class="code-string">'Company'</span>)
110110
.<span class="code-function">where</span>({ remote: <span class="code-keyword">true</span> })
111111
.<span class="code-function">exec</span>();
112112

113-
<span class="code-comment">// That's it. No infrastructure to manage.</span></code></pre>
113+
<span class="code-comment">// Pure SQLite. No cloud. No dependencies.</span></code></pre>
114114
</div>
115115
</div>
116116
</div>
@@ -221,13 +221,13 @@ <h3>CRM & Sales</h3>
221221
</div>
222222
</section>
223223

224-
<!-- Pricing Section -->
225-
<section id="pricing" class="pricing">
224+
<!-- Features Section -->
225+
<section id="features" class="pricing">
226226
<div class="container">
227227
<div class="section-header">
228-
<h2 class="section-title">Simple, transparent pricing</h2>
228+
<h2 class="section-title">Everything you need to build graph databases</h2>
229229
<p class="section-description">
230-
Start free. Scale as you grow. No hidden fees.
230+
Open source tools that run entirely on your machine. No subscriptions. No cloud required.
231231
</p>
232232
</div>
233233
<div class="pricing-grid">

0 commit comments

Comments
 (0)