@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.
@@ -643,7 +643,8 @@ function BlogListPage(props) {
643
643
  title: seoTitle,
644
644
  description: seoDescription || heroSubtitle,
645
645
  productName,
646
- keywords: seoKeywords
646
+ keywords: seoKeywords,
647
+ url: typeof window !== "undefined" ? window.location.origin + window.location.pathname : void 0
647
648
  }
648
649
  ),
649
650
  /* @__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: [
@@ -781,7 +782,9 @@ function BlogPostPage(props) {
781
782
  title: post.seoTitle || post.title,
782
783
  description: post.seoDescription || post.excerpt || "",
783
784
  productName,
784
- keywords: post.seoKeywords || ""
785
+ keywords: post.seoKeywords || "",
786
+ image: post.thumbnail || void 0,
787
+ url: typeof window !== "undefined" ? window.location.origin + window.location.pathname : void 0
785
788
  }
786
789
  ),
787
790
  /* @__PURE__ */ jsxs("article", { className: "max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-16 sm:py-20", children: [