@m13v/seo-components 0.8.4 → 0.8.5
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 +1 -1
- package/src/index.ts +0 -5
- package/src/server.ts +5 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -54,11 +54,6 @@ export { MotionSequence } from "./components/MotionSequence";
|
|
|
54
54
|
export { RemotionClip, ConceptReveal } from "./components/RemotionClip";
|
|
55
55
|
export { LottiePlayer } from "./components/LottiePlayer";
|
|
56
56
|
|
|
57
|
-
// Style injector — renders prebuilt Tailwind CSS as a <style> tag.
|
|
58
|
-
// Use this in your root layout instead of importing the .css file directly,
|
|
59
|
-
// to avoid PostCSS/Tailwind version conflicts on the consumer side.
|
|
60
|
-
export { SeoComponentsStyles } from "./components/SeoComponentsStyles";
|
|
61
|
-
|
|
62
57
|
// Sitemap sidebar + heading anchors
|
|
63
58
|
export { SitemapSidebar } from "./components/SitemapSidebar";
|
|
64
59
|
export type { SitemapSidebarProps } from "./components/SitemapSidebar";
|
package/src/server.ts
CHANGED
|
@@ -19,3 +19,8 @@ export { getGuideContext, buildGuideIndex, buildSystemPrompt } from "./lib/guide
|
|
|
19
19
|
export type { GuideContext, BuildSystemPromptOptions } from "./lib/guide-context";
|
|
20
20
|
|
|
21
21
|
export { getSupabaseAdmin } from "./lib/supabase-admin";
|
|
22
|
+
|
|
23
|
+
// Style injector — server-only component that inlines the prebuilt Tailwind
|
|
24
|
+
// CSS for the sidebar/chat/heading components as a <style> tag.
|
|
25
|
+
// Use in your root layout <head> to avoid consumer-side PostCSS conflicts.
|
|
26
|
+
export { SeoComponentsStyles } from "./components/SeoComponentsStyles";
|