@dogsbay/docs-layout 0.2.0-beta.22 → 0.2.0-beta.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dogsbay/docs-layout",
3
- "version": "0.2.0-beta.22",
3
+ "version": "0.2.0-beta.23",
4
4
  "description": "Standard documentation layout components for Dogsbay",
5
5
  "type": "module",
6
6
  "exports": {
@@ -29,8 +29,8 @@
29
29
  "./json-ld": "./src/json-ld.ts"
30
30
  },
31
31
  "dependencies": {
32
- "@dogsbay/ui": "0.2.0-beta.22",
33
- "@dogsbay/primitives": "0.2.0-beta.22"
32
+ "@dogsbay/ui": "0.2.0-beta.23",
33
+ "@dogsbay/primitives": "0.2.0-beta.23"
34
34
  },
35
35
  "devDependencies": {
36
36
  "vitest": "^3.0.0"
@@ -573,6 +573,12 @@ const siteIcon = '<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"
573
573
 
574
574
  {computedCanonical && <link rel="canonical" href={computedCanonical} />}
575
575
  {mdMirrorHref && <link rel="alternate" type="text/markdown" href={mdMirrorHref} />}
576
+ {/* Programmatic llms.txt discovery — agents that follow head
577
+ link rels get the per-mount llms.txt without parsing HTML.
578
+ Mirrors the existing _headers Link rel="describedby" used by
579
+ Cloudflare Pages / Workers. */}
580
+ <link rel="alternate" type="text/plain" title="llms.txt" href={llmsLinkHrefResolved} />
581
+ <link rel="describedby" type="text/plain" href={llmsLinkHrefResolved} />
576
582
 
577
583
  {/* Open Graph */}
578
584
  <meta property="og:type" content={ogType} />