@m13v/seo-components 0.11.1 → 0.12.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m13v/seo-components",
3
- "version": "0.11.1",
3
+ "version": "0.12.0",
4
4
  "scripts": {
5
5
  "build:css": "tailwind -i src/_build.css -o dist/styles.css --minify",
6
6
  "bump:consumers": "bash scripts/bump-consumers.sh",
package/src/index.ts CHANGED
@@ -54,10 +54,12 @@ export { MotionSequence } from "./components/MotionSequence";
54
54
  export { RemotionClip, ConceptReveal } from "./components/RemotionClip";
55
55
  export { LottiePlayer } from "./components/LottiePlayer";
56
56
 
57
- // Sitemap sidebar + heading anchors
57
+ // Sitemap sidebar + heading anchors + HTML sitemap page
58
58
  export { SitemapSidebar } from "./components/SitemapSidebar";
59
59
  export type { SitemapSidebarProps } from "./components/SitemapSidebar";
60
60
  export { HeadingAnchors } from "./components/HeadingAnchors";
61
+ export { HtmlSitemap } from "./components/HtmlSitemap";
62
+ export type { HtmlSitemapProps } from "./components/HtmlSitemap";
61
63
 
62
64
  // Guide chat (AI page assistant) — client-safe
63
65
  export { GuideChatPanel } from "./components/GuideChatPanel";