@opensite/ui 0.6.3 → 0.6.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.
Files changed (61) hide show
  1. package/dist/about-startup-team.cjs +2 -2
  2. package/dist/about-startup-team.js +2 -2
  3. package/dist/article-breadcrumb-social.cjs +434 -215
  4. package/dist/article-breadcrumb-social.d.cts +19 -1
  5. package/dist/article-breadcrumb-social.d.ts +19 -1
  6. package/dist/article-breadcrumb-social.js +434 -214
  7. package/dist/article-chapters-author.cjs +422 -204
  8. package/dist/article-chapters-author.d.cts +19 -1
  9. package/dist/article-chapters-author.d.ts +19 -1
  10. package/dist/article-chapters-author.js +422 -203
  11. package/dist/article-compact-toc.cjs +429 -73
  12. package/dist/article-compact-toc.d.cts +19 -1
  13. package/dist/article-compact-toc.d.ts +19 -1
  14. package/dist/article-compact-toc.js +430 -73
  15. package/dist/article-hero-prose.cjs +394 -347
  16. package/dist/article-hero-prose.d.cts +19 -1
  17. package/dist/article-hero-prose.d.ts +19 -1
  18. package/dist/article-hero-prose.js +396 -348
  19. package/dist/article-sidebar-sticky.cjs +398 -152
  20. package/dist/article-sidebar-sticky.d.cts +19 -1
  21. package/dist/article-sidebar-sticky.d.ts +19 -1
  22. package/dist/article-sidebar-sticky.js +400 -153
  23. package/dist/article-split-animated.cjs +422 -35
  24. package/dist/article-split-animated.d.cts +19 -1
  25. package/dist/article-split-animated.d.ts +19 -1
  26. package/dist/article-split-animated.js +423 -35
  27. package/dist/article-toc-sidebar.cjs +417 -356
  28. package/dist/article-toc-sidebar.d.cts +19 -1
  29. package/dist/article-toc-sidebar.d.ts +19 -1
  30. package/dist/article-toc-sidebar.js +417 -355
  31. package/dist/blog-cards-read-time.cjs +66 -27
  32. package/dist/blog-cards-read-time.js +66 -27
  33. package/dist/blog-cards-tagline-cta.cjs +64 -14
  34. package/dist/blog-cards-tagline-cta.js +64 -14
  35. package/dist/blog-carousel-apple.cjs +1255 -0
  36. package/dist/blog-carousel-apple.d.cts +113 -0
  37. package/dist/blog-carousel-apple.d.ts +113 -0
  38. package/dist/blog-carousel-apple.js +1234 -0
  39. package/dist/blog-category-overlay.cjs +77 -15
  40. package/dist/blog-category-overlay.js +77 -15
  41. package/dist/blog-featured-popular.cjs +72 -14
  42. package/dist/blog-featured-popular.js +72 -14
  43. package/dist/blog-filtered-results.cjs +122 -39
  44. package/dist/blog-filtered-results.js +122 -39
  45. package/dist/blog-grid-author-cards.cjs +40 -6
  46. package/dist/blog-grid-author-cards.js +40 -6
  47. package/dist/blog-grid-nine-posts.cjs +40 -6
  48. package/dist/blog-grid-nine-posts.js +40 -6
  49. package/dist/blog-horizontal-cards.cjs +34 -6
  50. package/dist/blog-horizontal-cards.js +34 -6
  51. package/dist/blog-horizontal-timeline.cjs +41 -12
  52. package/dist/blog-horizontal-timeline.js +41 -12
  53. package/dist/blog-masonry-featured.cjs +96 -52
  54. package/dist/blog-masonry-featured.js +96 -52
  55. package/dist/blog-related-articles.cjs +47 -9
  56. package/dist/blog-related-articles.js +47 -9
  57. package/dist/blog-tech-insights.cjs +78 -14
  58. package/dist/blog-tech-insights.js +78 -14
  59. package/dist/registry.cjs +1036 -687
  60. package/dist/registry.js +1036 -687
  61. package/package.json +1 -1
@@ -1,11 +1,12 @@
1
1
  "use client";
2
2
  import * as React from 'react';
3
+ import React__default from 'react';
3
4
  import { format } from 'date-fns';
4
5
  import { clsx } from 'clsx';
5
6
  import { twMerge } from 'tailwind-merge';
6
7
  import { Img } from '@page-speed/img';
7
8
  import { cva } from 'class-variance-authority';
8
- import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
9
+ import { jsx, jsxs } from 'react/jsx-runtime';
9
10
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
10
11
 
11
12
  // components/blocks/article/article-hero-prose.tsx
@@ -430,169 +431,6 @@ var Pressable = React.forwardRef(
430
431
  }
431
432
  );
432
433
  Pressable.displayName = "Pressable";
433
- var svgCache = /* @__PURE__ */ new Map();
434
- function DynamicIcon({
435
- name,
436
- size = 28,
437
- color,
438
- className,
439
- alt
440
- }) {
441
- const [svgContent, setSvgContent] = React.useState(null);
442
- const [isLoading, setIsLoading] = React.useState(true);
443
- const [error, setError] = React.useState(null);
444
- const { url, iconName } = React.useMemo(() => {
445
- const separator = name.includes("/") ? "/" : ":";
446
- const [prefix, iconName2] = name.split(separator);
447
- const baseUrl = `https://icons.opensite.ai/api/icon/${prefix}/${iconName2}?format=svg&width=${size}&height=${size}`;
448
- return {
449
- url: baseUrl,
450
- iconName: iconName2
451
- };
452
- }, [name, size]);
453
- React.useEffect(() => {
454
- let isMounted = true;
455
- const fetchSvg = async () => {
456
- const cached = svgCache.get(url);
457
- if (cached) {
458
- if (isMounted) {
459
- setSvgContent(cached);
460
- setIsLoading(false);
461
- }
462
- return;
463
- }
464
- try {
465
- setIsLoading(true);
466
- setError(null);
467
- const response = await fetch(url);
468
- if (!response.ok) {
469
- throw new Error(`Failed to fetch icon: ${response.status}`);
470
- }
471
- let svg = await response.text();
472
- svg = processSvgForCurrentColor(svg);
473
- svgCache.set(url, svg);
474
- if (isMounted) {
475
- setSvgContent(svg);
476
- setIsLoading(false);
477
- }
478
- } catch (err) {
479
- if (isMounted) {
480
- setError(err instanceof Error ? err.message : "Failed to load icon");
481
- setIsLoading(false);
482
- }
483
- }
484
- };
485
- fetchSvg();
486
- return () => {
487
- isMounted = false;
488
- };
489
- }, [url]);
490
- if (isLoading) {
491
- return /* @__PURE__ */ jsx(
492
- "span",
493
- {
494
- className: cn("inline-block", className),
495
- style: { width: size, height: size },
496
- "aria-hidden": "true"
497
- }
498
- );
499
- }
500
- if (error || !svgContent) {
501
- return /* @__PURE__ */ jsx(
502
- "span",
503
- {
504
- className: cn("inline-block", className),
505
- style: { width: size, height: size },
506
- role: "img",
507
- "aria-label": alt || iconName
508
- }
509
- );
510
- }
511
- return /* @__PURE__ */ jsx(
512
- "span",
513
- {
514
- className: cn("inline-flex items-center justify-center", className),
515
- style: {
516
- width: size,
517
- height: size,
518
- color: color || "inherit"
519
- },
520
- role: "img",
521
- "aria-label": alt || iconName,
522
- dangerouslySetInnerHTML: { __html: svgContent }
523
- }
524
- );
525
- }
526
- function processSvgForCurrentColor(svg) {
527
- let processed = svg;
528
- processed = processed.replace(
529
- /stroke=["'](#000000|#000|black)["']/gi,
530
- 'stroke="currentColor"'
531
- );
532
- processed = processed.replace(
533
- /fill=["'](#000000|#000|black)["']/gi,
534
- 'fill="currentColor"'
535
- );
536
- return processed;
537
- }
538
- var alertVariants = cva(
539
- "relative w-full rounded-lg border px-4 py-3 text-sm grid has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] grid-cols-[0_1fr] has-[>svg]:gap-x-3 gap-y-0.5 items-start [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current",
540
- {
541
- variants: {
542
- variant: {
543
- default: "bg-card text-card-foreground",
544
- destructive: "text-destructive bg-card [&>svg]:text-current *:data-[slot=alert-description]:text-destructive/90"
545
- }
546
- },
547
- defaultVariants: {
548
- variant: "default"
549
- }
550
- }
551
- );
552
- function Alert({
553
- className,
554
- variant,
555
- ...props
556
- }) {
557
- return /* @__PURE__ */ jsx(
558
- "div",
559
- {
560
- "data-slot": "alert",
561
- role: "alert",
562
- className: cn(alertVariants({ variant }), className),
563
- ...props
564
- }
565
- );
566
- }
567
- function AlertTitle({ className, ...props }) {
568
- return /* @__PURE__ */ jsx(
569
- "div",
570
- {
571
- "data-slot": "alert-title",
572
- className: cn(
573
- "col-start-2 line-clamp-1 min-h-4 font-medium tracking-tight",
574
- className
575
- ),
576
- ...props
577
- }
578
- );
579
- }
580
- function AlertDescription({
581
- className,
582
- ...props
583
- }) {
584
- return /* @__PURE__ */ jsx(
585
- "div",
586
- {
587
- "data-slot": "alert-description",
588
- className: cn(
589
- "text-muted-foreground col-start-2 grid justify-items-start gap-1 text-sm [&_p]:leading-relaxed",
590
- className
591
- ),
592
- ...props
593
- }
594
- );
595
- }
596
434
  function Avatar({
597
435
  className,
598
436
  ...props
@@ -638,183 +476,379 @@ function AvatarFallback({
638
476
  }
639
477
  );
640
478
  }
479
+ var maxWidthStyles = {
480
+ sm: "max-w-screen-sm",
481
+ md: "max-w-screen-md",
482
+ lg: "max-w-screen-lg",
483
+ xl: "max-w-7xl",
484
+ "2xl": "max-w-screen-2xl",
485
+ "4xl": "max-w-[1536px]",
486
+ full: "max-w-full"
487
+ };
488
+ var Container = React__default.forwardRef(
489
+ ({ children, maxWidth = "xl", className, as = "div", ...props }, ref) => {
490
+ const Component = as;
491
+ return /* @__PURE__ */ jsx(
492
+ Component,
493
+ {
494
+ ref,
495
+ className: cn(
496
+ "mx-auto w-full px-2 sm:px-4 lg:px-8",
497
+ maxWidthStyles[maxWidth],
498
+ className
499
+ ),
500
+ ...props,
501
+ children
502
+ }
503
+ );
504
+ }
505
+ );
506
+ Container.displayName = "Container";
641
507
 
642
- // lib/mediaPlaceholders.ts
643
- var imagePlaceholders = [
644
- "https://toastability-production.s3.amazonaws.com/xlp46pzk3a4d73jgjx4s7xdafwpn",
645
- "https://toastability-production.s3.amazonaws.com/g1iuifb3yzoofo9c7a00koyn6q1t",
646
- "https://toastability-production.s3.amazonaws.com/z9u4sdrj2oq3eds0qyui0nxsus3j",
647
- "https://toastability-production.s3.amazonaws.com/63aotyt2pb4gqpccej2kkw8reson",
648
- "https://toastability-production.s3.amazonaws.com/pjgb223h1bjywdk15i3zi7pjhutg",
649
- "https://toastability-production.s3.amazonaws.com/we9r4e711an6d0bd3dwbl9tb9z7q",
650
- "https://toastability-production.s3.amazonaws.com/f8rfrurzo743ym1s7m5xtbombunz",
651
- "https://toastability-production.s3.amazonaws.com/oe0y4bgiylx81fbfvsw31mhdgjzs",
652
- "https://toastability-production.s3.amazonaws.com/sr370c2cnf7uk5k4f6znyshualv0",
653
- "https://toastability-production.s3.amazonaws.com/cen5x90p3kbdafb80liq1a5j222x",
654
- "https://toastability-production.s3.amazonaws.com/ygob90kp07hxmi5jj4sned76dnmc",
655
- "https://toastability-production.s3.amazonaws.com/qhz2kawawq3bbh7nusz3bvahln3v",
656
- "https://toastability-production.s3.amazonaws.com/zykfhuapdqzu94ee1535gsgnvyac",
657
- "https://toastability-production.s3.amazonaws.com/kh1p8y15v55ctp5ulobm4pd77etm",
658
- "https://toastability-production.s3.amazonaws.com/8x62o6350p1ejm3pjrp1jwvcbh4v",
659
- "https://toastability-production.s3.amazonaws.com/vvixyoo7ybq3h04q2q0kact0s5wc",
660
- "https://toastability-production.s3.amazonaws.com/t502cfynqso7ntkdvmcmfc87yjkt",
661
- "https://toastability-production.s3.amazonaws.com/ihgx63s5nfzp2e93e3ccljjnnrov",
662
- "https://toastability-production.s3.amazonaws.com/b555hwjt7ltr81et05v5254q1ak6",
663
- "https://toastability-production.s3.amazonaws.com/c4sgsy0g7o2rrjmvm9x7evxems82",
664
- "https://toastability-production.s3.amazonaws.com/a3m42usevv0iet0fpfwa1fsytxmv",
665
- "https://toastability-production.s3.amazonaws.com/qghzqu1i99vaubyew9s5dxcbel9l",
666
- "https://toastability-production.s3.amazonaws.com/9covpitzpuuobkg1m4mfokpi0enw",
667
- "https://toastability-production.s3.amazonaws.com/2d4k8d5shwg82276hzj2ztbj7mxq",
668
- "https://toastability-production.s3.amazonaws.com/op92dycs7w856e2jsvx20st0nyz9",
669
- "https://toastability-production.s3.amazonaws.com/f921uoblxbv8f9bmr4s2ik7xxugl",
670
- "https://toastability-production.s3.amazonaws.com/gl7n7p6atndufbsm6q2ac5jeqttp",
671
- "https://toastability-production.s3.amazonaws.com/sj8cs2gpbanaowqwxar1uhhwd23z",
672
- "https://toastability-production.s3.amazonaws.com/hu4gmd93sp95wdyr9qijze0rgim9",
673
- "https://toastability-production.s3.amazonaws.com/uh2vd59np82h8sevbmfnsha89sf1",
674
- "https://toastability-production.s3.amazonaws.com/gxs6zevccphti0hdq5l9fwytprpr",
675
- "https://toastability-production.s3.amazonaws.com/s4vho0wfbjhf758oife8qfuekou8",
676
- "https://toastability-production.s3.amazonaws.com/1b0gd8ul22q799d62dvm3sgyll85",
677
- "https://toastability-production.s3.amazonaws.com/102grjqg8aigxkj585s9x3xbxfv7",
678
- "https://toastability-production.s3.amazonaws.com/dvz0441h9fxjhh88lzqbwdoyxv52",
679
- "https://toastability-production.s3.amazonaws.com/50y066ms7rb5sw62u9u08jzkk8rj",
680
- "https://toastability-production.s3.amazonaws.com/9uxe0jw1zl1tujy0m5yalo7m2ht8",
681
- "https://toastability-production.s3.amazonaws.com/cyhcpla6me8vs936i3fw6wbhypi2",
682
- "https://toastability-production.s3.amazonaws.com/6ntdz6xwid3fswjz8y0otdxmzs40",
683
- "https://toastability-production.s3.amazonaws.com/y1aezpa78m2fhfvj8whcx337y9cb",
684
- "https://toastability-production.s3.amazonaws.com/eoa76d31ynbg34urr6e4619la1f7",
685
- "https://toastability-production.s3.amazonaws.com/0mh8a1dg7ftcqnyzgv303u501c8y",
686
- "https://toastability-production.s3.amazonaws.com/vvucxqs128w2d0z3n4s2z131rq7p",
687
- "https://toastability-production.s3.amazonaws.com/2rbqbw9778770i8izdeabx8v2w2k",
688
- "https://toastability-production.s3.amazonaws.com/90rcw2mljzpeuxlac8q77mor15xz",
689
- "https://toastability-production.s3.amazonaws.com/vh1aowwr93yz4qrzct2s4je0cxdo",
690
- "https://toastability-production.s3.amazonaws.com/ssgb7unxdwdqokfvhkp7cok2v79s",
691
- "https://toastability-production.s3.amazonaws.com/vvkma6b8whdkiq5nq8z4eyfe00vo",
692
- "https://toastability-production.s3.amazonaws.com/9797jh6slgbf9oq6lzlimcdiuziv",
693
- "https://toastability-production.s3.amazonaws.com/betxbx61fkijt0aygineplf489ze",
694
- "https://toastability-production.s3.amazonaws.com/0o6d7z4mm9nzeufhv9kefrhihbip",
695
- "https://toastability-production.s3.amazonaws.com/1xdx70c7gp9l883soyh5d3exesvt",
696
- "https://toastability-production.s3.amazonaws.com/jhjfvkmdzktacyijd9fh6acc7o2c",
697
- "https://toastability-production.s3.amazonaws.com/n001o4pfpszmyw03ubctig7kvf0e",
698
- "https://toastability-production.s3.amazonaws.com/l080sx0lcx51x44dqrb8006nqf08",
699
- "https://toastability-production.s3.amazonaws.com/2t36c7l0ywchaz4nys8yj2l5amae",
700
- "https://toastability-production.s3.amazonaws.com/gg5qnvb4nsl2k3g4dw4ls8bsllwh",
701
- "https://toastability-production.s3.amazonaws.com/3nqc7xvjy3e8d7jo1gdvbzty0oqg",
702
- "https://toastability-production.s3.amazonaws.com/0kx9umbfmv881wt9dfqnohv8efgi",
703
- "https://toastability-production.s3.amazonaws.com/9z0sbfnskx70vse99e3dfhper7i1",
704
- "https://toastability-production.s3.amazonaws.com/9keidwrag6g7jtqr7rdwb1ryt6ht",
705
- "https://toastability-production.s3.amazonaws.com/zm88vf14geh1gh0frd3yrdlb6pl8",
706
- "https://toastability-production.s3.amazonaws.com/0x7ktdk01jfaoysst0emzvqevu19",
707
- "https://toastability-production.s3.amazonaws.com/e83zsyvl0an0owzdmpwjnnty641x",
708
- "https://toastability-production.s3.amazonaws.com/t3k42fbzq7r7j93feldqm5cj1o1n",
709
- "https://toastability-production.s3.amazonaws.com/5sm6wc4no8fyzxfki5njmnv6gql5",
710
- "https://toastability-production.s3.amazonaws.com/w41h7890eivogu3sr78vlwkpzz8g",
711
- "https://toastability-production.s3.amazonaws.com/vrezhtksoqbw1nyo4hwnoqizrus5",
712
- "https://toastability-production.s3.amazonaws.com/8qkikcd43paeqgvw9gc1032j3yup",
713
- "https://toastability-production.s3.amazonaws.com/ihhq8unynafk4aikmys3rhbfibaz",
714
- "https://toastability-production.s3.amazonaws.com/rews5enr9ynu6izioj66s8ec90nc",
715
- "https://toastability-production.s3.amazonaws.com/6ku135fhv528eei3agnoc3zd7y75",
716
- "https://toastability-production.s3.amazonaws.com/x4scuzhsozrwrg703df5wbhygkgo",
717
- "https://toastability-production.s3.amazonaws.com/73e0s79u4crdu7cmjfp99j1l2v55",
718
- "https://toastability-production.s3.amazonaws.com/rddfyzvfpdlbzwhgep2myppwxn05",
719
- "https://toastability-production.s3.amazonaws.com/mat88x8zzdek7wpgtocjrehfivsh",
720
- "https://toastability-production.s3.amazonaws.com/3vwfdbekbkskxj2mvlvu85fz787u",
721
- "https://toastability-production.s3.amazonaws.com/ms4s4zyqpmboh0slez1cwat9qhw4",
722
- "https://toastability-production.s3.amazonaws.com/5jsc0b4e3gxnjs81iotw2c3e6da3",
723
- "https://toastability-production.s3.amazonaws.com/0g6t701zqr2r7najmdgftpeqnxmz",
724
- "https://toastability-production.s3.amazonaws.com/u3p1hlbm2c1vvkwlm8h668pe132z",
725
- "https://toastability-production.s3.amazonaws.com/ehgbcugs782765ke1l2dtbtzd918",
726
- "https://toastability-production.s3.amazonaws.com/kka8f550on7acx1lf82xleu6zhzo",
727
- "https://toastability-production.s3.amazonaws.com/67fnapqepn7f8vwt0x4nqho70hbz",
728
- "https://toastability-production.s3.amazonaws.com/t4cidbsfz3z468bn45yqdrkbx7ou",
729
- "https://toastability-production.s3.amazonaws.com/gq3c9qalkiomu0rzdzxymkdaazdu",
730
- "https://toastability-production.s3.amazonaws.com/9ujya2tfhxja7y5s9wb7d2u8crhd",
731
- "https://toastability-production.s3.amazonaws.com/hotlo54tsvl2k3eht9gg0460l9zw",
732
- "https://toastability-production.s3.amazonaws.com/ytbyjrcvrghc7wl6w1g7g8fwka22",
733
- "https://toastability-production.s3.amazonaws.com/uv0g605yf5mz106nrm1uspt9l0rr",
734
- "https://toastability-production.s3.amazonaws.com/yrp5k5xszwpe26fquupey6a6g0uu",
735
- "https://toastability-production.s3.amazonaws.com/97gctpna2hdozl1f8u5xq4ew8h0o",
736
- "https://toastability-production.s3.amazonaws.com/xjtepune0scj9yjkkqgaiwlq9hls",
737
- "https://toastability-production.s3.amazonaws.com/g607vblaarqctl1cvgxffhx4pw6g",
738
- "https://toastability-production.s3.amazonaws.com/4xpu1ljr9c8g6qzmfum5ygjzbzpb",
739
- "https://toastability-production.s3.amazonaws.com/yw5f7iwyypf4kctpr5ye5e495swt",
740
- "https://toastability-production.s3.amazonaws.com/z37cidvud212bzqhhalrhvk7ipaa",
741
- "https://toastability-production.s3.amazonaws.com/pfllskt7q7144l288lrnpc6gx606",
742
- "https://toastability-production.s3.amazonaws.com/fokd3hxzvdtsomagbfhqooyvndyv",
743
- "https://toastability-production.s3.amazonaws.com/6fffnb4phovtqkjhtzifs4rhb84u",
744
- "https://toastability-production.s3.amazonaws.com/mt87xjr79wxdhjy7496v3r6m2m9t",
745
- "https://toastability-production.s3.amazonaws.com/3dy9ge962uarlaf2xl7imdcviqgx",
746
- "https://toastability-production.s3.amazonaws.com/okf6fg4n9yv59up8ivgcdjy3w030",
747
- "https://toastability-production.s3.amazonaws.com/t7iteqw4xhtppkiws88bsoia25hv",
748
- "https://toastability-production.s3.amazonaws.com/klr5tuvulkyqfb721txtu4hgzxdm",
749
- "https://toastability-production.s3.amazonaws.com/9eddibiq5ovc9cvs3ekijkrjpahg",
750
- "https://toastability-production.s3.amazonaws.com/3ghn8dz3g9qtt4pf4nwbriaydvzb",
751
- "https://toastability-production.s3.amazonaws.com/82ykd8s8boiqaxypkulb0v0s2qiw",
752
- "https://toastability-production.s3.amazonaws.com/4eqmdeanxfk6jzvigo42y5ryv2c8",
753
- "https://toastability-production.s3.amazonaws.com/9ughnl9wnko2vdboib8n3wl3cxsy",
754
- "https://toastability-production.s3.amazonaws.com/4xjcgtlwseruezhoh3o1ga4umhj4",
755
- "https://toastability-production.s3.amazonaws.com/xwh1zzxgyd887thfm1j9lu9qnd6c",
756
- "https://toastability-production.s3.amazonaws.com/ri0dqx79spe6771np76mkmno5xfd",
757
- "https://toastability-production.s3.amazonaws.com/e13qu3083lkhdg7th64vb628172a",
758
- "https://toastability-production.s3.amazonaws.com/w87w0fyjdol9yzwo7yywkgxidvzo"
759
- ];
760
- var defaultArticleContent = (optixFlowConfig) => /* @__PURE__ */ jsxs(Fragment, { children: [
761
- /* @__PURE__ */ jsx("h2", { className: "text-3xl font-extrabold", children: "The Great Joke Tax" }),
762
- /* @__PURE__ */ jsx("p", { className: "mt-2 text-lg text-muted-foreground", children: "In a kingdom far away, where laughter once flowed freely, a peculiar tale unfolded about a king who decided to tax the very essence of joy itself - jokes and jest." }),
763
- /* @__PURE__ */ jsx("h2", { children: "How the Tax System Works" }),
764
- /* @__PURE__ */ jsx("p", { children: "The king, seeing how much happier his subjects were, realized the error of his ways and repealed the joke tax. Jokester was declared a hero, and the kingdom lived happily ever after." }),
765
- /* @__PURE__ */ jsxs(Alert, { children: [
766
- /* @__PURE__ */ jsx(DynamicIcon, { name: "lucide/lightbulb", size: 16 }),
767
- /* @__PURE__ */ jsx(AlertTitle, { children: "Royal Decree!" }),
768
- /* @__PURE__ */ jsx(AlertDescription, { children: "Remember, all jokes must be registered at the Royal Jest Office before telling them" })
769
- ] }),
770
- /* @__PURE__ */ jsx("h2", { children: "The People's Rebellion" }),
771
- /* @__PURE__ */ jsx("p", { children: "The people of the kingdom, feeling uplifted by the laughter, started to tell jokes and puns again, and soon the entire kingdom was in on the joke." }),
772
- /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs("table", { children: [
773
- /* @__PURE__ */ jsx("thead", { children: /* @__PURE__ */ jsxs("tr", { children: [
774
- /* @__PURE__ */ jsx("th", { children: "King's Treasury" }),
775
- /* @__PURE__ */ jsx("th", { children: "People's happiness" })
776
- ] }) }),
777
- /* @__PURE__ */ jsxs("tbody", { children: [
778
- /* @__PURE__ */ jsxs("tr", { children: [
779
- /* @__PURE__ */ jsx("td", { children: "Empty" }),
780
- /* @__PURE__ */ jsx("td", { children: "Overflowing" })
781
- ] }),
782
- /* @__PURE__ */ jsxs("tr", { className: "m-0 border-t p-0 even:bg-muted", children: [
783
- /* @__PURE__ */ jsx("td", { children: "Modest" }),
784
- /* @__PURE__ */ jsx("td", { children: "Satisfied" })
785
- ] }),
786
- /* @__PURE__ */ jsxs("tr", { className: "m-0 border-t p-0 even:bg-muted", children: [
787
- /* @__PURE__ */ jsx("td", { children: "Full" }),
788
- /* @__PURE__ */ jsx("td", { children: "Ecstatic" })
789
- ] })
790
- ] })
791
- ] }) }),
792
- /* @__PURE__ */ jsx("p", { children: "The king, seeing how much happier his subjects were, realized the error of his ways and repealed the joke tax. Jokester was declared a hero, and the kingdom lived happily ever after." }),
793
- /* @__PURE__ */ jsx("h2", { children: "The King's Plan" }),
794
- /* @__PURE__ */ jsx(
795
- Img,
508
+ // lib/patternSvgs.ts
509
+ var patternSvgs = {
510
+ squareAltGrid: "https://cdn.ing/assets/files/record/286187/4gpn0yq2ptra8iwlvmwwv860ggwv",
511
+ grid1: "https://cdn.ing/assets/files/record/286186/nbdflpgp4ostrno079hygibsflp3",
512
+ noise: "https://cdn.ing/assets/i/r/286188/zrqcp9hynh3j7p2laihwzfbujgrl/noise.png",
513
+ dots: "https://cdn.ing/assets/files/record/286198/yfsjx9thvtxzhl2qtshxyhkrm524",
514
+ dotPattern: "https://cdn.ing/assets/files/record/286192/7ig0cku8aqbboiza8nuk6hw0nnsr",
515
+ dotPattern2: "https://cdn.ing/assets/files/record/286189/arez6gd2s7isn9i1o6c7sexdq7bl",
516
+ circles: "https://cdn.ing/assets/files/record/286190/gtmia3sncjtzetdshc20zf1d3c17",
517
+ waves: "https://cdn.ing/assets/files/record/286191/mqlb33fzxz9cdth1bx7if0wmpkp1",
518
+ crossPattern: "https://cdn.ing/assets/files/record/286193/9yfqwdbnqaipbp7fsb3wbzzmq472",
519
+ architect: "https://cdn.ing/assets/files/record/286194/vgs88ugpvyhxu13wqgy0acvae6re",
520
+ tinyCheckers: "https://cdn.ing/assets/files/record/286195/65efaknsw8kcpf9o3c2gybytsl5b",
521
+ p6: "https://cdn.ing/assets/i/r/286196/6kl0rqnd6mjk8j7e525fo8fo0vkc/p6.webp"
522
+ };
523
+ var maskTop = "radial-gradient(ellipse 70% 60% at 50% 0%, #000 60%, transparent 100%)";
524
+ var maskBottom = "radial-gradient(ellipse 100% 80% at 50% 100%, #000 50%, transparent 90%)";
525
+ var maskCenter = "radial-gradient(ellipse 60% 60% at 50% 50%, #000 30%, transparent 70%)";
526
+ var maskTopLeft = "radial-gradient(ellipse 80% 80% at 0% 0%, #000 50%, transparent 90%)";
527
+ var maskTopRight = "radial-gradient(ellipse 80% 80% at 100% 0%, #000 50%, transparent 90%)";
528
+ var maskBottomLeft = "radial-gradient(ellipse 80% 80% at 0% 100%, #000 50%, transparent 90%)";
529
+ var maskBottomRight = "radial-gradient(ellipse 80% 80% at 100% 100%, #000 50%, transparent 90%)";
530
+ var circuitBoardPattern = (id, mask) => /* @__PURE__ */ jsxs(
531
+ "svg",
532
+ {
533
+ className: "h-full w-full",
534
+ xmlns: "http://www.w3.org/2000/svg",
535
+ style: mask ? {
536
+ maskImage: mask,
537
+ WebkitMaskImage: mask
538
+ } : void 0,
539
+ children: [
540
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
541
+ "pattern",
542
+ {
543
+ id,
544
+ x: "0",
545
+ y: "0",
546
+ width: "100",
547
+ height: "100",
548
+ patternUnits: "userSpaceOnUse",
549
+ children: [
550
+ /* @__PURE__ */ jsx(
551
+ "path",
552
+ {
553
+ d: "M0 50h40M60 50h40M50 0v40M50 60v40",
554
+ stroke: "hsl(var(--muted))",
555
+ strokeWidth: "1",
556
+ fill: "none"
557
+ }
558
+ ),
559
+ /* @__PURE__ */ jsx("circle", { cx: "50", cy: "50", r: "3", fill: "hsl(var(--muted))" }),
560
+ /* @__PURE__ */ jsx("circle", { cx: "0", cy: "50", r: "2", fill: "hsl(var(--muted))" }),
561
+ /* @__PURE__ */ jsx("circle", { cx: "100", cy: "50", r: "2", fill: "hsl(var(--muted))" }),
562
+ /* @__PURE__ */ jsx("circle", { cx: "50", cy: "0", r: "2", fill: "hsl(var(--muted))" }),
563
+ /* @__PURE__ */ jsx("circle", { cx: "50", cy: "100", r: "2", fill: "hsl(var(--muted))" })
564
+ ]
565
+ }
566
+ ) }),
567
+ /* @__PURE__ */ jsx("rect", { width: "100%", height: "100%", fill: `url(#${id})` })
568
+ ]
569
+ }
570
+ );
571
+ var gridDotsPattern = (id, mask) => /* @__PURE__ */ jsxs(
572
+ "svg",
573
+ {
574
+ className: "h-full w-full",
575
+ xmlns: "http://www.w3.org/2000/svg",
576
+ style: mask ? {
577
+ maskImage: mask,
578
+ WebkitMaskImage: mask
579
+ } : void 0,
580
+ children: [
581
+ /* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
582
+ "pattern",
583
+ {
584
+ id,
585
+ x: "0",
586
+ y: "0",
587
+ width: "40",
588
+ height: "40",
589
+ patternUnits: "userSpaceOnUse",
590
+ children: [
591
+ /* @__PURE__ */ jsx(
592
+ "path",
593
+ {
594
+ d: "M0 20h40M20 0v40",
595
+ stroke: "hsl(var(--muted))",
596
+ strokeWidth: "0.5",
597
+ fill: "none"
598
+ }
599
+ ),
600
+ /* @__PURE__ */ jsx("circle", { cx: "20", cy: "20", r: "2", fill: "hsl(var(--muted))" })
601
+ ]
602
+ }
603
+ ) }),
604
+ /* @__PURE__ */ jsx("rect", { width: "100%", height: "100%", fill: `url(#${id})` })
605
+ ]
606
+ }
607
+ );
608
+ var gridPattern = (size, mask) => /* @__PURE__ */ jsx(
609
+ "div",
610
+ {
611
+ className: "h-full w-full bg-[linear-gradient(to_right,_hsl(var(--muted))_1px,_transparent_1px),linear-gradient(to_bottom,_hsl(var(--muted))_1px,_transparent_1px)]",
612
+ style: {
613
+ backgroundSize: `${size}px ${size}px`,
614
+ ...mask ? {
615
+ maskImage: mask,
616
+ WebkitMaskImage: mask
617
+ } : {}
618
+ }
619
+ }
620
+ );
621
+ var diagonalCrossPattern = (mask) => /* @__PURE__ */ jsx(
622
+ "div",
623
+ {
624
+ className: "h-full w-full",
625
+ style: {
626
+ backgroundImage: "repeating-linear-gradient(45deg, transparent, transparent 32px, hsl(var(--muted)) 32px, hsl(var(--muted)) 33px), repeating-linear-gradient(135deg, transparent, transparent 32px, hsl(var(--muted)) 32px, hsl(var(--muted)) 33px)",
627
+ ...mask ? {
628
+ maskImage: mask,
629
+ WebkitMaskImage: mask
630
+ } : {}
631
+ }
632
+ }
633
+ );
634
+ var dashedGridMaskBase = "repeating-linear-gradient(to right, black 0px, black 3px, transparent 3px, transparent 8px), repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 8px)";
635
+ var dashedGridPattern = (fadeMask) => {
636
+ const mask = fadeMask ? `${dashedGridMaskBase}, ${fadeMask}` : dashedGridMaskBase;
637
+ return /* @__PURE__ */ jsx(
638
+ "div",
796
639
  {
797
- src: imagePlaceholders[1],
798
- alt: "Article content image",
799
- className: "my-8 aspect-video w-full rounded-md object-cover",
800
- optixFlowConfig
640
+ className: "h-full w-full",
641
+ style: {
642
+ backgroundImage: "linear-gradient(to right, hsl(var(--muted)) 1px, transparent 1px), linear-gradient(to bottom, hsl(var(--muted)) 1px, transparent 1px)",
643
+ backgroundSize: "20px 20px",
644
+ backgroundPosition: "0 0, 0 0",
645
+ maskImage: mask,
646
+ WebkitMaskImage: mask,
647
+ maskComposite: "intersect",
648
+ WebkitMaskComposite: "source-in"
649
+ }
650
+ }
651
+ );
652
+ };
653
+ var gradientGlow = (position) => /* @__PURE__ */ jsx(
654
+ "div",
655
+ {
656
+ className: cn(
657
+ "pointer-events-none absolute left-1/2 z-0 aspect-square w-3/4 -translate-x-1/2 rounded-full opacity-50 blur-3xl",
658
+ position === "top" ? "-top-1/4" : "-bottom-1/4"
659
+ ),
660
+ style: {
661
+ background: "radial-gradient(circle, hsl(var(--primary)) 0%, transparent 70%)"
662
+ }
663
+ }
664
+ );
665
+ var spotlight = (position) => /* @__PURE__ */ jsx(
666
+ "div",
667
+ {
668
+ className: cn(
669
+ "pointer-events-none absolute top-1/2 z-0 aspect-square w-3/4 -translate-y-1/2 rounded-full opacity-40 blur-3xl",
670
+ position === "left" ? "-left-1/4" : "-right-1/4"
671
+ ),
672
+ style: {
673
+ background: "radial-gradient(circle, hsl(var(--primary)) 0%, transparent 70%)"
801
674
  }
802
- ),
803
- /* @__PURE__ */ jsxs("p", { children: [
804
- "The king thought long and hard, and finally came up with",
805
- " ",
806
- /* @__PURE__ */ jsx(Pressable, { href: "#", children: "a brilliant plan" }),
807
- ": he would tax the jokes in the kingdom."
808
- ] }),
809
- /* @__PURE__ */ jsx("blockquote", { children: "\u201CAfter all,\u201D he said, \u201Ceveryone enjoys a good joke, so it's only fair that they should pay for the privilege.\u201D" }),
810
- /* @__PURE__ */ jsx("p", { children: "The king's subjects were not amused. They grumbled and complained, but the king was firm:" }),
811
- /* @__PURE__ */ jsxs("ul", { children: [
812
- /* @__PURE__ */ jsx("li", { children: "1st level of puns: 5 gold coins" }),
813
- /* @__PURE__ */ jsx("li", { children: "2nd level of jokes: 10 gold coins" }),
814
- /* @__PURE__ */ jsx("li", { children: "3rd level of one-liners : 20 gold coins" })
815
- ] }),
816
- /* @__PURE__ */ jsx("p", { children: "As a result, people stopped telling jokes, and the kingdom fell into a gloom. But there was one person who refused to let the king's foolishness get him down: a court jester named Jokester." })
817
- ] });
675
+ }
676
+ );
677
+ var patternOverlays = {
678
+ circuitBoardBasic: () => circuitBoardPattern("circuit-board-basic"),
679
+ circuitBoardFadeTop: () => circuitBoardPattern("circuit-board-fade-top", maskTop),
680
+ circuitBoardFadeBottom: () => circuitBoardPattern("circuit-board-fade-bottom", maskBottom),
681
+ circuitBoardFadeCenter: () => circuitBoardPattern("circuit-board-fade-center", maskCenter),
682
+ circuitBoardFadeTopLeft: () => circuitBoardPattern("circuit-board-fade-top-left", maskTopLeft),
683
+ circuitBoardFadeTopRight: () => circuitBoardPattern("circuit-board-fade-top-right", maskTopRight),
684
+ circuitBoardFadeBottomLeft: () => circuitBoardPattern("circuit-board-fade-bottom-left", maskBottomLeft),
685
+ circuitBoardFadeBottomRight: () => circuitBoardPattern("circuit-board-fade-bottom-right", maskBottomRight),
686
+ dashedGridBasic: () => dashedGridPattern(),
687
+ dashedGridFadeTop: () => dashedGridPattern(maskTop),
688
+ dashedGridFadeBottom: () => dashedGridPattern(maskBottom),
689
+ dashedGridFadeCenter: () => dashedGridPattern(maskCenter),
690
+ dashedGridFadeTopLeft: () => dashedGridPattern(maskTopLeft),
691
+ dashedGridFadeTopRight: () => dashedGridPattern(maskTopRight),
692
+ dashedGridFadeBottomLeft: () => dashedGridPattern(maskBottomLeft),
693
+ dashedGridFadeBottomRight: () => dashedGridPattern(maskBottomRight),
694
+ diagonalCrossBasic: () => diagonalCrossPattern(),
695
+ diagonalCrossFadeTop: () => diagonalCrossPattern(maskTop),
696
+ diagonalCrossFadeBottom: () => diagonalCrossPattern(maskBottom),
697
+ diagonalCrossFadeCenter: () => diagonalCrossPattern(maskCenter),
698
+ diagonalCrossFadeTopLeft: () => diagonalCrossPattern(maskTopLeft),
699
+ diagonalCrossFadeTopRight: () => diagonalCrossPattern(maskTopRight),
700
+ diagonalCrossFadeBottomLeft: () => diagonalCrossPattern(maskBottomLeft),
701
+ diagonalCrossFadeBottomRight: () => diagonalCrossPattern(maskBottomRight),
702
+ gridBasic: () => gridPattern(40),
703
+ gridFadeTop: () => gridPattern(32, maskTop),
704
+ gridFadeBottom: () => gridPattern(32, maskBottom),
705
+ gridFadeCenter: () => gridPattern(40, maskCenter),
706
+ gridFadeTopLeft: () => gridPattern(32, maskTopLeft),
707
+ gridFadeTopRight: () => gridPattern(32, maskTopRight),
708
+ gridFadeBottomLeft: () => gridPattern(32, maskBottomLeft),
709
+ gridFadeBottomRight: () => gridPattern(32, maskBottomRight),
710
+ gridDotsBasic: () => gridDotsPattern("grid-dots-basic"),
711
+ gridDotsFadeCenter: () => gridDotsPattern("grid-dots-fade-center", maskCenter),
712
+ gradientGlowTop: () => gradientGlow("top"),
713
+ gradientGlowBottom: () => gradientGlow("bottom"),
714
+ spotlightLeft: () => spotlight("left"),
715
+ spotlightRight: () => spotlight("right")
716
+ };
717
+ var inlinePatternStyles = {
718
+ radialGradientTop: {
719
+ background: "radial-gradient(125% 125% at 50% 10%, hsl(var(--background)) 40%, hsl(var(--primary)) 100%)"
720
+ },
721
+ radialGradientBottom: {
722
+ background: "radial-gradient(125% 125% at 50% 90%, hsl(var(--background)) 40%, hsl(var(--primary)) 100%)"
723
+ }
724
+ };
725
+ function PatternBackground({
726
+ pattern,
727
+ opacity = 0.08,
728
+ className,
729
+ style
730
+ }) {
731
+ if (!pattern) {
732
+ return null;
733
+ }
734
+ if (pattern in inlinePatternStyles) {
735
+ const inlineStyle = inlinePatternStyles[pattern];
736
+ return /* @__PURE__ */ jsx(
737
+ "div",
738
+ {
739
+ className: cn("pointer-events-none absolute inset-0 z-0", className),
740
+ style: { ...inlineStyle, opacity, ...style },
741
+ "aria-hidden": "true"
742
+ }
743
+ );
744
+ }
745
+ if (pattern in patternOverlays) {
746
+ const Overlay = patternOverlays[pattern];
747
+ return /* @__PURE__ */ jsx(
748
+ "div",
749
+ {
750
+ className: cn("pointer-events-none absolute inset-0 z-0", className),
751
+ style: { opacity, ...style },
752
+ "aria-hidden": "true",
753
+ children: Overlay()
754
+ }
755
+ );
756
+ }
757
+ const patternUrl = pattern in patternSvgs ? patternSvgs[pattern] : pattern;
758
+ return /* @__PURE__ */ jsx(
759
+ "div",
760
+ {
761
+ className: cn("pointer-events-none absolute inset-0 z-0", className),
762
+ style: {
763
+ backgroundImage: `url(${patternUrl})`,
764
+ backgroundRepeat: "repeat",
765
+ backgroundSize: "auto",
766
+ opacity,
767
+ ...style
768
+ },
769
+ "aria-hidden": "true"
770
+ }
771
+ );
772
+ }
773
+ var backgroundStyles = {
774
+ default: "bg-background text-foreground",
775
+ white: "bg-white text-dark",
776
+ gray: "bg-muted/30 text-foreground",
777
+ dark: "bg-foreground text-background",
778
+ transparent: "bg-transparent text-foreground",
779
+ gradient: "bg-linear-to-br from-primary via-primary/90 to-foreground text-primary-foreground",
780
+ primary: "bg-primary text-primary-foreground",
781
+ secondary: "bg-secondary text-secondary-foreground",
782
+ muted: "bg-muted text-muted-foreground"
783
+ };
784
+ var spacingStyles = {
785
+ none: "py-0 md:py-0",
786
+ sm: "py-12 md:py-16",
787
+ md: "py-16 md:py-24",
788
+ lg: "py-20 md:py-32",
789
+ xl: "py-24 md:py-40"
790
+ };
791
+ var Section = React__default.forwardRef(
792
+ ({
793
+ id,
794
+ title,
795
+ subtitle,
796
+ children,
797
+ className,
798
+ style,
799
+ background = "default",
800
+ spacing = "lg",
801
+ pattern,
802
+ patternOpacity,
803
+ patternClassName,
804
+ containerClassName,
805
+ containerMaxWidth = "xl",
806
+ ...props
807
+ }, ref) => {
808
+ const effectivePatternOpacity = patternOpacity !== void 0 ? patternOpacity : pattern ? 1 : 0;
809
+ return /* @__PURE__ */ jsxs(
810
+ "section",
811
+ {
812
+ ref,
813
+ id,
814
+ className: cn(
815
+ "relative",
816
+ pattern ? "overflow-hidden" : null,
817
+ backgroundStyles[background],
818
+ spacingStyles[spacing],
819
+ className
820
+ ),
821
+ style,
822
+ ...props,
823
+ children: [
824
+ /* @__PURE__ */ jsx(
825
+ PatternBackground,
826
+ {
827
+ pattern,
828
+ opacity: effectivePatternOpacity,
829
+ className: patternClassName
830
+ }
831
+ ),
832
+ /* @__PURE__ */ jsxs(
833
+ Container,
834
+ {
835
+ maxWidth: containerMaxWidth,
836
+ className: cn("relative z-10", containerClassName),
837
+ children: [
838
+ (title || subtitle) && /* @__PURE__ */ jsxs("div", { className: "mb-12 text-center md:mb-16", children: [
839
+ subtitle && /* @__PURE__ */ jsx("p", { className: "mb-2 text-sm font-semibold uppercase tracking-wider text-primary", children: subtitle }),
840
+ title && /* @__PURE__ */ jsx("h2", { className: "text-3xl font-bold tracking-tight md:text-4xl lg:text-5xl", children: title })
841
+ ] }),
842
+ children
843
+ ]
844
+ }
845
+ )
846
+ ]
847
+ }
848
+ );
849
+ }
850
+ );
851
+ Section.displayName = "Section";
818
852
  function ArticleHeroProseComponent({
819
853
  post,
820
854
  className,
@@ -829,7 +863,11 @@ function ArticleHeroProseComponent({
829
863
  authorSlot,
830
864
  children,
831
865
  dateFormat = "MMMM d, yyyy",
832
- optixFlowConfig
866
+ optixFlowConfig,
867
+ background,
868
+ spacing,
869
+ pattern,
870
+ patternOpacity
833
871
  }) {
834
872
  const { title, authorName, authorHref, image, pubDate, description, authorImage } = post ?? {};
835
873
  const authorContent = React.useMemo(() => {
@@ -862,15 +900,25 @@ function ArticleHeroProseComponent({
862
900
  }
863
901
  );
864
902
  }, [heroMediaSlot, image, heroImageClassName, optixFlowConfig]);
865
- return /* @__PURE__ */ jsxs("section", { className: cn("py-32", className), children: [
866
- /* @__PURE__ */ jsx("div", { className: cn("container", containerClassName), children: /* @__PURE__ */ jsxs("div", { className: cn("mx-auto flex max-w-5xl flex-col items-center gap-4 text-center", headerClassName), children: [
867
- title && /* @__PURE__ */ jsx("h1", { className: cn("max-w-3xl text-5xl font-semibold text-pretty md:text-6xl", titleClassName), children: title }),
868
- description && /* @__PURE__ */ jsx("h3", { className: cn("max-w-3xl text-lg text-muted-foreground md:text-xl", descriptionClassName), children: description }),
869
- authorContent,
870
- heroMediaContent
871
- ] }) }),
872
- /* @__PURE__ */ jsx("div", { className: cn("container", containerClassName), children: /* @__PURE__ */ jsx("div", { className: cn("mx-auto prose max-w-3xl dark:prose-invert", proseClassName), children: children || defaultArticleContent(optixFlowConfig) }) })
873
- ] });
903
+ return /* @__PURE__ */ jsxs(
904
+ Section,
905
+ {
906
+ background,
907
+ spacing,
908
+ pattern,
909
+ patternOpacity,
910
+ className,
911
+ children: [
912
+ /* @__PURE__ */ jsx("div", { className: cn("container", containerClassName), children: /* @__PURE__ */ jsxs("div", { className: cn("mx-auto flex max-w-5xl flex-col items-center gap-4 text-center", headerClassName), children: [
913
+ title && /* @__PURE__ */ jsx("h1", { className: cn("max-w-3xl text-5xl font-semibold text-pretty md:text-6xl", titleClassName), children: title }),
914
+ description && /* @__PURE__ */ jsx("h3", { className: cn("max-w-3xl text-lg text-muted-foreground md:text-xl", descriptionClassName), children: description }),
915
+ authorContent,
916
+ heroMediaContent
917
+ ] }) }),
918
+ children && /* @__PURE__ */ jsx("div", { className: cn("container", containerClassName), children: /* @__PURE__ */ jsx("div", { className: cn("mx-auto prose max-w-3xl dark:prose-invert", proseClassName), children }) })
919
+ ]
920
+ }
921
+ );
874
922
  }
875
923
 
876
924
  export { ArticleHeroProseComponent as ArticleHeroProse };