@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.js
CHANGED
|
@@ -4521,7 +4521,8 @@ function BlogListPage(props) {
|
|
|
4521
4521
|
title: seoTitle,
|
|
4522
4522
|
description: seoDescription || heroSubtitle,
|
|
4523
4523
|
productName,
|
|
4524
|
-
keywords: seoKeywords
|
|
4524
|
+
keywords: seoKeywords,
|
|
4525
|
+
url: typeof window !== "undefined" ? window.location.origin + window.location.pathname : void 0
|
|
4525
4526
|
}
|
|
4526
4527
|
),
|
|
4527
4528
|
/* @__PURE__ */ jsxRuntime.jsx("section", { className: "py-16 sm:py-20 md:py-24", children: /* @__PURE__ */ jsxRuntime.jsx("div", { className: "max-w-7xl mx-auto px-4 sm:px-6 lg:px-8", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "text-center max-w-3xl mx-auto", children: [
|
|
@@ -4659,7 +4660,9 @@ function BlogPostPage(props) {
|
|
|
4659
4660
|
title: post.seoTitle || post.title,
|
|
4660
4661
|
description: post.seoDescription || post.excerpt || "",
|
|
4661
4662
|
productName,
|
|
4662
|
-
keywords: post.seoKeywords || ""
|
|
4663
|
+
keywords: post.seoKeywords || "",
|
|
4664
|
+
image: post.thumbnail || void 0,
|
|
4665
|
+
url: typeof window !== "undefined" ? window.location.origin + window.location.pathname : void 0
|
|
4663
4666
|
}
|
|
4664
4667
|
),
|
|
4665
4668
|
/* @__PURE__ */ jsxRuntime.jsxs("article", { className: "max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-16 sm:py-20", children: [
|