You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix critical SEO issues: OG image, meta alignment, privacy policy
- Convert OG image from SVG to PNG (social platforms don't render SVG)
- Update OG SVG tagline to match new copy
- Align pre-rendered titles and meta descriptions with React components
- Update noscript fallback to match new homepage copy
- Add privacy policy page with route, prerender, and noscript fallback
- Add privacy link to Footer component (new `links` prop)
- Add `dateModified` and `author.url` to BlogPosting JSON-LD schema
- Add `<lastmod>` to all sitemap URLs
- Update Organization schema description
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: scripts/prerender.ts
+56-21Lines changed: 56 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -38,16 +38,22 @@ const routes: RouteMeta[] = [
38
38
})),
39
39
{
40
40
path: '/getting-started',
41
-
title: 'Getting Started — Forkzero',
41
+
title: 'Get Started with Lattice — Forkzero',
42
42
description: 'Install Lattice and start building a knowledge-coordinated codebase in under five minutes.',
43
43
canonical: 'https://forkzero.ai/getting-started',
44
44
},
45
+
{
46
+
path: '/privacy',
47
+
title: 'Privacy Policy — Forkzero',
48
+
description: 'Forkzero privacy policy. How we handle your data.',
49
+
canonical: 'https://forkzero.ai/privacy',
50
+
},
45
51
// Homepage last — it overwrites dist/index.html (template is already in memory)
46
52
{
47
53
path: '/',
48
-
title: 'Forkzero — Knowledge Coordination for AI-Native Teams',
54
+
title: 'Lattice by Forkzero — Knowledge Graph for AI-Native Teams',
49
55
description:
50
-
'Forkzero builds developer tools that connect research, strategy, requirements, and implementation into a traversable knowledge graph.',
56
+
'Lattice captures the research, decisions, and requirements behind your code in a Git-native knowledge graph. Any collaborator — human or AI — picks up where the last one left off.',
`<h1>Forkzero — Knowledge Coordination for AI-Native Teams</h1>`,
148
-
`<p>Connect research, strategy, requirements, and implementation into a traversable knowledge graph.</p>`,
149
-
`<h2>Why Forkzero</h2>`,
152
+
`<h1>Your agent writes the code. Who remembers why?</h1>`,
153
+
`<p>The research, reasoning, and requirements behind your code vanish into chat logs. Lattice captures them in a Git-native knowledge graph — so any collaborator, human or AI, can pick up where the last one left off.</p>`,
154
+
`<h2>Why Lattice?</h2>`,
150
155
`<ul>`,
151
-
`<li>Every decision traces back to its source</li>`,
152
-
`<li>Agents and humans share the same knowledge layer</li>`,
153
-
`<li>Context stays structured, not scattered</li>`,
156
+
`<li>Stop losing the "why" — every requirement traces back to the research that motivated it</li>`,
157
+
`<li>Requirements before code, not after — give your agent a spec to implement</li>`,
158
+
`<li>Onboard anyone in minutes — human or AI</li>`,
`<p>If you subscribe to our mailing list, we collect your email address. We do not use cookies, tracking pixels, or third-party analytics. Lattice is open-source software that runs entirely on your machine and does not collect telemetry.</p>`,
0 commit comments