@burdenoff/website-sdk 2026.802.1 → 2026.7203.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.
@@ -449,182 +449,6 @@ function ContentRenderer({
449
449
  }
450
450
  return /* @__PURE__ */ jsxRuntime.jsx("div", { className, children: /* @__PURE__ */ jsxRuntime.jsx("pre", { style: { whiteSpace: "pre-wrap", fontFamily: "inherit" }, children: content }) });
451
451
  }
452
- var PROSE_CSS = `
453
- .boff-prose {
454
- max-width: none;
455
- }
456
-
457
- .boff-prose h1 {
458
- font-size: 2.25rem;
459
- font-weight: 800;
460
- line-height: 1.2;
461
- margin-top: 0;
462
- margin-bottom: 1rem;
463
- color: hsl(var(--foreground));
464
- }
465
-
466
- .boff-prose h2 {
467
- font-size: 1.75rem;
468
- font-weight: 700;
469
- line-height: 1.3;
470
- margin-top: 2rem;
471
- margin-bottom: 1rem;
472
- color: hsl(var(--foreground));
473
- }
474
-
475
- .boff-prose h3 {
476
- font-size: 1.5rem;
477
- font-weight: 600;
478
- line-height: 1.4;
479
- margin-top: 1.5rem;
480
- margin-bottom: 0.75rem;
481
- color: hsl(var(--foreground));
482
- }
483
-
484
- .boff-prose h4 {
485
- font-size: 1.25rem;
486
- font-weight: 600;
487
- line-height: 1.5;
488
- margin-top: 1.25rem;
489
- margin-bottom: 0.5rem;
490
- color: hsl(var(--foreground));
491
- }
492
-
493
- .boff-prose p {
494
- margin-bottom: 1rem;
495
- line-height: 1.75;
496
- color: hsl(var(--foreground));
497
- }
498
-
499
- .boff-prose ul,
500
- .boff-prose ol {
501
- margin-bottom: 1rem;
502
- padding-left: 1.5rem;
503
- }
504
-
505
- .boff-prose ul {
506
- list-style-type: disc;
507
- }
508
-
509
- .boff-prose ol {
510
- list-style-type: decimal;
511
- }
512
-
513
- .boff-prose li {
514
- margin-bottom: 0.25rem;
515
- line-height: 1.75;
516
- color: hsl(var(--foreground));
517
- }
518
-
519
- .boff-prose li > ul,
520
- .boff-prose li > ol {
521
- margin-top: 0.25rem;
522
- margin-bottom: 0.25rem;
523
- }
524
-
525
- .boff-prose a {
526
- color: hsl(var(--primary));
527
- text-decoration: underline;
528
- text-underline-offset: 2px;
529
- }
530
-
531
- .boff-prose a:hover {
532
- opacity: 0.8;
533
- }
534
-
535
- .boff-prose hr {
536
- border: none;
537
- height: 1px;
538
- background-color: hsl(var(--border));
539
- margin: 2rem 0;
540
- }
541
-
542
- .boff-prose blockquote {
543
- border-left: 4px solid hsl(var(--border));
544
- padding-left: 1rem;
545
- margin: 1.5rem 0;
546
- font-style: italic;
547
- color: hsl(var(--muted-foreground));
548
- }
549
-
550
- .boff-prose strong {
551
- font-weight: 700;
552
- color: hsl(var(--foreground));
553
- }
554
-
555
- .boff-prose code {
556
- background-color: hsl(var(--muted));
557
- padding: 0.125rem 0.25rem;
558
- border-radius: 0.25rem;
559
- font-size: 0.875em;
560
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
561
- }
562
-
563
- .boff-prose pre {
564
- background-color: hsl(var(--muted));
565
- padding: 1rem;
566
- border-radius: 0.5rem;
567
- overflow-x: auto;
568
- margin-bottom: 1rem;
569
- }
570
-
571
- .boff-prose pre code {
572
- background-color: transparent;
573
- padding: 0;
574
- }
575
-
576
- .boff-prose img {
577
- max-width: 100%;
578
- height: auto;
579
- }
580
-
581
- .boff-prose table {
582
- width: 100%;
583
- border-collapse: collapse;
584
- margin-bottom: 1rem;
585
- }
586
-
587
- .boff-prose th,
588
- .boff-prose td {
589
- border: 1px solid hsl(var(--border));
590
- padding: 0.5rem;
591
- text-align: left;
592
- }
593
-
594
- .boff-prose th {
595
- font-weight: 600;
596
- background-color: hsl(var(--muted));
597
- }
598
-
599
- /* Smaller variant used inside cards and compact panels */
600
- .boff-prose-sm {
601
- font-size: 0.875rem;
602
- }
603
-
604
- .boff-prose-sm h1 {
605
- font-size: 1.75rem;
606
- }
607
-
608
- .boff-prose-sm h2 {
609
- font-size: 1.5rem;
610
- }
611
-
612
- .boff-prose-sm h3 {
613
- font-size: 1.25rem;
614
- }
615
-
616
- .boff-prose-sm h4 {
617
- font-size: 1.125rem;
618
- }
619
-
620
- .boff-prose-sm p,
621
- .boff-prose-sm li {
622
- line-height: 1.625;
623
- }
624
- `;
625
- function ProseStyles() {
626
- return /* @__PURE__ */ jsxRuntime.jsx("style", { dangerouslySetInnerHTML: { __html: PROSE_CSS } });
627
- }
628
452
  function PageHead({
629
453
  title,
630
454
  description,
@@ -846,8 +670,7 @@ function BlogListPage(props) {
846
670
  title: seoTitle,
847
671
  description: seoDescription || heroSubtitle,
848
672
  productName,
849
- keywords: seoKeywords,
850
- url: typeof window !== "undefined" ? window.location.origin + window.location.pathname : void 0
673
+ keywords: seoKeywords
851
674
  }
852
675
  ),
853
676
  /* @__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: [
@@ -979,16 +802,13 @@ function BlogPostPage(props) {
979
802
  day: "numeric"
980
803
  }) : "";
981
804
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: `w-full ${className}`, children: [
982
- /* @__PURE__ */ jsxRuntime.jsx(ProseStyles, {}),
983
805
  /* @__PURE__ */ jsxRuntime.jsx(
984
806
  PageHead,
985
807
  {
986
808
  title: post.seoTitle || post.title,
987
809
  description: post.seoDescription || post.excerpt || "",
988
810
  productName,
989
- keywords: post.seoKeywords || "",
990
- image: post.thumbnail || void 0,
991
- url: typeof window !== "undefined" ? window.location.origin + window.location.pathname : void 0
811
+ keywords: post.seoKeywords || ""
992
812
  }
993
813
  ),
994
814
  /* @__PURE__ */ jsxRuntime.jsxs("article", { className: "max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 py-16 sm:py-20", children: [
@@ -1025,7 +845,7 @@ function BlogPostPage(props) {
1025
845
  className: "w-full h-full object-cover"
1026
846
  }
1027
847
  ) }),
1028
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: "boff-prose max-w-none", children: /* @__PURE__ */ jsxRuntime.jsx(ContentRenderer, { content: post.content, format: post.contentFormat }) })
848
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "prose prose-gray dark:prose-invert max-w-none", children: /* @__PURE__ */ jsxRuntime.jsx(ContentRenderer, { content: post.content, format: post.contentFormat }) })
1029
849
  ] })
1030
850
  ] });
1031
851
  }
@@ -1486,7 +1306,6 @@ function CaseStudiesListPage(props) {
1486
1306
  const resolvedEmptyTitle = emptyTitle ?? "Case studies are on the way";
1487
1307
  const resolvedEmptySubtitle = emptySubtitle ?? `${productLabel} is early in its journey, and we'd rather show you real, measurable results than filler. We're working closely with our first teams now \u2014 their stories will be published here soon. In the meantime, we'd love to show you what's possible.`;
1488
1308
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: `w-full ${className}`, "data-cs": "case-studies-v2", children: [
1489
- /* @__PURE__ */ jsxRuntime.jsx(ProseStyles, {}),
1490
1309
  /* @__PURE__ */ jsxRuntime.jsx(AnimationStyles, {}),
1491
1310
  seoTitle && /* @__PURE__ */ jsxRuntime.jsx(
1492
1311
  PageHead,
@@ -1708,7 +1527,6 @@ function CaseStudyPage(props) {
1708
1527
  }
1709
1528
  const formattedDate = formatDate(post.publishedAt || post.lastUpdated);
1710
1529
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: `w-full ${className}`, children: [
1711
- /* @__PURE__ */ jsxRuntime.jsx(ProseStyles, {}),
1712
1530
  /* @__PURE__ */ jsxRuntime.jsx(
1713
1531
  PageHead,
1714
1532
  {
@@ -1752,7 +1570,7 @@ function CaseStudyPage(props) {
1752
1570
  className: "h-full w-full object-cover"
1753
1571
  }
1754
1572
  ) }),
1755
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: "boff-prose max-w-none", children: /* @__PURE__ */ jsxRuntime.jsx(ContentRenderer, { content: post.content, format: post.contentFormat }) }),
1573
+ /* @__PURE__ */ jsxRuntime.jsx("div", { className: "prose prose-gray max-w-none dark:prose-invert", children: /* @__PURE__ */ jsxRuntime.jsx(ContentRenderer, { content: post.content, format: post.contentFormat }) }),
1756
1574
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-14 rounded-2xl border bg-gradient-to-br from-primary/10 via-card to-card p-8 text-center", children: [
1757
1575
  /* @__PURE__ */ jsxRuntime.jsxs("h2", { className: "text-xl font-bold text-foreground", children: [
1758
1576
  "Curious what ",
@@ -1992,7 +1810,7 @@ function CmsTimeline(props) {
1992
1810
  ] })
1993
1811
  ] }),
1994
1812
  /* @__PURE__ */ jsxRuntime.jsx("h2", { className: "text-xl sm:text-2xl font-bold text-foreground mb-4", children: entry.title }),
1995
- entry.content ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "boff-prose boff-prose-sm max-w-none", children: /* @__PURE__ */ jsxRuntime.jsx(
1813
+ entry.content ? /* @__PURE__ */ jsxRuntime.jsx("div", { className: "prose prose-sm prose-gray dark:prose-invert max-w-none", children: /* @__PURE__ */ jsxRuntime.jsx(
1996
1814
  ContentRenderer,
1997
1815
  {
1998
1816
  content: entry.content,
@@ -2007,9 +1825,9 @@ function CmsTimeline(props) {
2007
1825
  }
2008
1826
  function EntryContent({ content }) {
2009
1827
  if (typeof content === "string") {
2010
- return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "boff-prose boff-prose-sm max-w-none", children: /* @__PURE__ */ jsxRuntime.jsx(ContentRenderer, { content, format: "markdown" }) });
1828
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "prose prose-sm prose-gray dark:prose-invert max-w-none", children: /* @__PURE__ */ jsxRuntime.jsx(ContentRenderer, { content, format: "markdown" }) });
2011
1829
  }
2012
- return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "boff-prose boff-prose-sm max-w-none", children: content });
1830
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { className: "prose prose-sm max-w-none", children: content });
2013
1831
  }
2014
1832
  function EntriesTimeline(props) {
2015
1833
  const { entries, pageSize, productName } = props;
@@ -2222,7 +2040,6 @@ function ChangelogPage(props) {
2222
2040
  const showCta = Boolean(ctaHref && ctaLabel);
2223
2041
  const isPropDriven = entries != null;
2224
2042
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: `w-full ${className}`, children: [
2225
- /* @__PURE__ */ jsxRuntime.jsx(ProseStyles, {}),
2226
2043
  /* @__PURE__ */ jsxRuntime.jsx(
2227
2044
  PageHead,
2228
2045
  {