@burdenoff/website-sdk 2026.723.2 → 2026.724.2
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/dist/content/index.js +5 -2
- package/dist/content/index.js.map +1 -1
- package/dist/content/index.mjs +5 -2
- package/dist/content/index.mjs.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4491,7 +4491,8 @@ function BlogListPage(props) {
|
|
|
4491
4491
|
title: seoTitle,
|
|
4492
4492
|
description: seoDescription || heroSubtitle,
|
|
4493
4493
|
productName,
|
|
4494
|
-
keywords: seoKeywords
|
|
4494
|
+
keywords: seoKeywords,
|
|
4495
|
+
url: typeof window !== "undefined" ? window.location.origin + window.location.pathname : void 0
|
|
4495
4496
|
}
|
|
4496
4497
|
),
|
|
4497
4498
|
/* @__PURE__ */ jsx("section", { className: "py-16 sm:py-20 md:py-24", children: /* @__PURE__ */ jsx("div", { className: "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8", children: /* @__PURE__ */ jsxs("div", { className: "text-center max-w-3xl mx-auto", children: [
|
|
@@ -4629,7 +4630,9 @@ function BlogPostPage(props) {
|
|
|
4629
4630
|
title: post.seoTitle || post.title,
|
|
4630
4631
|
description: post.seoDescription || post.excerpt || "",
|
|
4631
4632
|
productName,
|
|
4632
|
-
keywords: post.seoKeywords || ""
|
|
4633
|
+
keywords: post.seoKeywords || "",
|
|
4634
|
+
image: post.thumbnail || void 0,
|
|
4635
|
+
url: typeof window !== "undefined" ? window.location.origin + window.location.pathname : void 0
|
|
4633
4636
|
}
|
|
4634
4637
|
),
|
|
4635
4638
|
/* @__PURE__ */ jsxs("article", { className: "max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-16 sm:py-20", children: [
|