Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions public/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Via git clone:
## Key files for AI agents

- CLAUDE.md — coding rules and architecture summary
- AGENTS.md — cross-tool agent context (Cursor, Copilot, Codex)
- DESIGN.md — visual philosophy and taste layer
- docs/design-system.md — full component inventory and specification
- docs/tokens.md — full token reference
Expand All @@ -32,12 +33,12 @@ Via git clone:

| Level | Directory | Count |
|------------|------------------------------|-------|
| Atoms | src/components/atoms/ | 10 |
| Molecules | src/components/molecules/ | 18 |
| Atoms | src/components/atoms/ | 11 |
| Molecules | src/components/molecules/ | 17 |
| Organisms | src/components/organisms/ | 19 |
| Templates | src/components/templates/ | 7 |

UI primitives in src/components/ui/ are shadcn/ui components — extend via CVA
UI primitives in src/components/ui/ are 48 shadcn/ui components — extend via CVA
variants, never modify directly. One component per file, PascalCase filenames,
barrel index.ts per level.

Expand Down
1 change: 1 addition & 0 deletions public/llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Via git clone:
## Key files for AI agents

- CLAUDE.md — coding rules and architecture summary
- AGENTS.md — cross-tool agent context (Cursor, Copilot, Codex)
- DESIGN.md — visual philosophy and taste layer
- docs/design-system.md — full component inventory and specification
- /.well-known/mcp.json — AI agent discovery manifest
Expand Down
28 changes: 17 additions & 11 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,67 +2,73 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://democrito.design/</loc>
<lastmod>2026-05-25</lastmod>
<lastmod>2026-06-02</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://democrito.design/manifesto</loc>
<lastmod>2026-05-25</lastmod>
<lastmod>2026-06-02</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://democrito.design/tokens</loc>
<lastmod>2026-05-25</lastmod>
<lastmod>2026-06-02</lastmod>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://democrito.design/atoms</loc>
<lastmod>2026-05-25</lastmod>
<lastmod>2026-06-02</lastmod>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://democrito.design/molecules</loc>
<lastmod>2026-05-25</lastmod>
<lastmod>2026-06-02</lastmod>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://democrito.design/organisms</loc>
<lastmod>2026-05-25</lastmod>
<lastmod>2026-06-02</lastmod>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://democrito.design/templates</loc>
<lastmod>2026-05-25</lastmod>
<lastmod>2026-06-02</lastmod>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://democrito.design/ai</loc>
<lastmod>2026-05-25</lastmod>
<lastmod>2026-06-02</lastmod>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>https://democrito.design/ai/claude</loc>
<lastmod>2026-05-25</lastmod>
<lastmod>2026-06-02</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://democrito.design/ai/vibe-coding</loc>
<lastmod>2026-05-25</lastmod>
<lastmod>2026-06-02</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://democrito.design/ai/github</loc>
<lastmod>2026-05-25</lastmod>
<lastmod>2026-06-02</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://democrito.design/ai/examples</loc>
<lastmod>2026-06-02</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
Expand Down
1 change: 1 addition & 0 deletions scripts/generate-sitemap.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const routes = [
{ path: "/ai/claude", priority: "0.8", changefreq: "monthly" },
{ path: "/ai/vibe-coding", priority: "0.8", changefreq: "monthly" },
{ path: "/ai/github", priority: "0.8", changefreq: "monthly" },
{ path: "/ai/examples", priority: "0.8", changefreq: "monthly" },
];

const xml = `<?xml version="1.0" encoding="UTF-8"?>
Expand Down
1 change: 1 addition & 0 deletions scripts/prerender.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const ROUTES = [
"/ai/claude",
"/ai/vibe-coding",
"/ai/github",
"/ai/examples",
];

// 1 — Build the SSR bundle
Expand Down
Loading