> ## Documentation Index
> Fetch the complete documentation index at: https://docs.livepeer.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Livepeer.org Website Changelog

> Commit history for the Livepeer.org website repository.

export const CustomCardTitle = ({icon, title, variant = "card", iconSize, style = {}, className = "", ...rest}) => {
  const variants = {
    card: {
      display: 'flex',
      alignItems: 'center',
      gap: "var(--lp-spacing-2)",
      marginBottom: "var(--lp-spacing-3)",
      color: 'var(--lp-color-text-primary)',
      fontSize: '1rem',
      fontWeight: 600
    },
    accordion: {
      display: 'inline-flex',
      alignItems: 'center',
      gap: "var(--lp-spacing-2)"
    },
    tab: {
      display: 'inline-flex',
      alignItems: 'center',
      gap: '0.4rem',
      fontSize: '0.875rem'
    }
  };
  const sizes = {
    card: 20,
    accordion: 18,
    tab: 14
  };
  const size = iconSize || sizes[variant] || 20;
  const baseStyle = variants[variant] || variants.card;
  return variant === 'card' ? <div className={className} style={{
    ...baseStyle,
    ...style
  }} {...rest}>
      {typeof icon === 'string' ? <Icon icon={icon} size={size} color="var(--lp-color-accent)" /> : icon}
      {title}
    </div> : <span className={className} style={{
    ...baseStyle,
    ...style
  }} {...rest}>
      {typeof icon === 'string' ? <Icon icon={icon} size={size} color="var(--lp-color-accent)" /> : icon}
      {title}
    </span>;
};

export const Subtitle = ({style = {}, text, children, variant = 'default', fontSize = '', fontWeight = '', fontStyle = '', marginTop = '', marginBottom = '', color = '', className = '', ...rest}) => {
  const renderInlineCode = (value, keyPrefix) => {
    return value.split(/(`[^`]+`)/g).map((segment, index) => {
      if (segment.startsWith('`') && segment.endsWith('`')) {
        return <code key={`${keyPrefix}-code-${index}`}>{segment.slice(1, -1)}</code>;
      }
      return segment;
    });
  };
  const renderInlineMarkup = (value, keyPrefix = 'subtitle') => {
    if (typeof value !== 'string') {
      return value;
    }
    return value.split(/(\*\*[\s\S]+?\*\*)/g).map((segment, index) => {
      if (segment.startsWith('**') && segment.endsWith('**')) {
        const inner = segment.slice(2, -2);
        return <strong key={`${keyPrefix}-strong-${index}`}>
            {renderInlineCode(inner, `${keyPrefix}-strong-${index}`)}
          </strong>;
      }
      return renderInlineCode(segment, `${keyPrefix}-${index}`);
    });
  };
  const renderContent = (value, keyPrefix) => {
    if (Array.isArray(value)) {
      return value.map((item, index) => renderContent(item, `${keyPrefix}-${index}`));
    }
    return renderInlineMarkup(value, keyPrefix);
  };
  const variants = {
    default: {
      fontSize: '1rem',
      fontStyle: 'italic',
      color: 'var(--lp-color-accent)',
      marginBottom: 0
    },
    changelog: {
      fontSize: '0.8rem',
      fontStyle: 'normal',
      fontWeight: 700,
      color: 'var(--lp-color-text-primary)',
      marginBottom: 0
    }
  };
  const base = variants[variant] || variants.default;
  return <span className={className} style={{
    ...base,
    ...fontSize ? {
      fontSize
    } : {},
    ...fontWeight ? {
      fontWeight
    } : {},
    ...fontStyle ? {
      fontStyle
    } : {},
    ...marginTop ? {
      marginTop
    } : {},
    ...marginBottom ? {
      marginBottom
    } : {},
    ...color ? {
      color
    } : {},
    ...style
  }} {...rest}>
      {renderContent(text, 'text')}
      {renderContent(children, 'children')}
    </span>;
};

export const LazyLoad = ({children, height = "200px", offset = "200px", fadeDuration = 400, className = "", style = {}, ...rest}) => {
  const ref = useRef(null);
  const [visible, setVisible] = useState(false);
  const [ready, setReady] = useState(false);
  useEffect(() => {
    const el = ref.current;
    if (!el) return;
    const observer = new IntersectionObserver(([entry]) => {
      if (entry.isIntersecting) {
        setVisible(true);
        observer.disconnect();
      }
    }, {
      rootMargin: offset
    });
    observer.observe(el);
    return () => observer.disconnect();
  }, []);
  useEffect(() => {
    if (!visible) return;
    const frameId = requestAnimationFrame(() => {
      setReady(true);
    });
    return () => cancelAnimationFrame(frameId);
  }, [visible]);
  const placeholder = <div ref={ref} className={className} style={{
    minHeight: height,
    ...style
  }} {...rest} />;
  if (!visible) return placeholder;
  return <div ref={ref} className={className} style={{
    opacity: ready ? 1 : 0,
    transition: `opacity ${fadeDuration}ms ease-in`,
    ...style
  }} {...rest}>
      {children}
    </div>;
};

export const ScrollBox = ({children, maxHeight = 300, showHint = true, ariaLabel = "Scrollable content", style = {}, className = "", ...rest}) => {
  const contentRef = useRef(null);
  const [isOverflowing, setIsOverflowing] = useState(false);
  useEffect(() => {
    const checkOverflow = () => {
      if (contentRef.current) {
        const maxHeightPx = typeof maxHeight === "number" ? maxHeight : parseInt(maxHeight, 10) || 300;
        setIsOverflowing(contentRef.current.scrollHeight > maxHeightPx);
      }
    };
    checkOverflow();
    window.addEventListener("resize", checkOverflow);
    return () => window.removeEventListener("resize", checkOverflow);
  }, [maxHeight, children]);
  return <div className={className} style={{
    position: "relative",
    ...style
  }} {...rest}>
      <div ref={contentRef} role="region" tabIndex={0} aria-label={ariaLabel} style={{
    maxHeight: typeof maxHeight === "number" ? `${maxHeight}px` : maxHeight,
    overflowY: "auto",
    paddingRight: 4
  }} onScroll={e => {
    const el = e.target;
    const atBottom = el.scrollHeight - el.scrollTop <= el.clientHeight + 10;
    const hint = el.parentNode.querySelector("[data-scroll-hint]");
    if (hint) hint.style.opacity = atBottom ? "0" : "1";
  }}>
        {children}
      </div>
      {showHint && isOverflowing && <div data-scroll-hint style={{
    fontSize: 11,
    color: "var(--lp-color-text-muted)",
    textAlign: "center",
    marginTop: 8,
    transition: "opacity 0.2s"
  }}>
          Scroll for more ↓
        </div>}
    </div>;
};

export const DoubleIconLink = ({label = '', labelColor, href = '#', text = '', iconLeft = 'github', iconLeftColor, iconRight = 'arrow-up-right', iconRightColor = 'var(--lp-color-accent)', className = '', style = {}, ...rest}) => {
  return <span className={className} style={{
    whiteSpace: 'nowrap',
    display: 'inline-flex',
    alignItems: 'center',
    gap: "var(--lp-spacing-1)",
    marginLeft: '0.3rem',
    ...style
  }} {...rest}>
      {text && <span style={{
    marginRight: 8
  }}>{text}</span>}
      <Icon icon={iconLeft} color={iconLeftColor} />
      <a href={href} style={{
    color: {
      labelColor
    }
  }}>
        {label}
      </a>
      <div style={{
    marginRight: '0.3rem'
  }}>
        <Icon icon={iconRight} size={12} color={iconRightColor} />
      </div>
    </span>;
};

export const LinkArrow = ({href, label, description, newline = true, borderColor, className = '', style = {}, ...rest}) => {
  const linkArrowStyle = {
    display: 'inline-flex',
    alignItems: 'center',
    justifyContent: 'center',
    gap: "var(--lp-spacing-1)",
    width: 'fit-content',
    ...borderColor && ({
      borderColor
    })
  };
  return <span className={className} style={style} {...rest}>
      {newline && <br />}
      <span style={linkArrowStyle}>
        <a href={href} target="_blank" rel="noopener noreferrer">
          {label}
        </a>
        <Icon icon="arrow-up-right" size={14} color="var(--lp-color-accent)" />
      </span>
      {description && description}
      {description && <div style={{
    height: "var(--lp-spacing-3)"
  }} />}
    </span>;
};

export const InlineDivider = ({margin = "0.75rem 0", padding = "0", color = "var(--lp-color-border-default)", opacity = 0.4, height = "1px", className = "", style = {}, ...rest}) => <hr role="separator" className={className} style={{
  border: "none",
  margin,
  padding,
  height,
  backgroundColor: color,
  opacity,
  ...style
}} {...rest} />;

export const CustomDivider = ({color = "var(--lp-color-border-default)", middleText = "", spacing = "default", style = {}, className = "", ...rest}) => {
  const spacingPresets = {
    default: {
      margin: "24px 0"
    },
    overlap: {
      margin: "-1rem 0 -1rem 0"
    },
    tight: {
      margin: "0 0 -1rem 0"
    },
    section: {
      margin: "0 0 -2rem 0"
    },
    sectionOverlap: {
      margin: "-1rem 0 -2rem 0"
    },
    deepOverlap: {
      margin: "-1rem 0 -1.5rem 0"
    }
  };
  const spacingStyle = spacingPresets[spacing] || spacingPresets.default;
  return <div role="separator" aria-orientation="horizontal" className={className} style={{
    display: "flex",
    alignItems: "center",
    ...spacingStyle,
    fontSize: style?.fontSize || "16px",
    height: "fit-content",
    ...style
  }} {...rest}>
      <span style={{
    marginRight: "var(--lp-spacing-px-8)",
    opacity: 0.2
  }}>
        <Icon icon="/snippets/assets/logos/Livepeer-Logo-Symbol-Theme.svg" />
      </span>
      <div style={{
    flex: 1,
    height: "1px",
    background: "var(--lp-color-border-default)",
    opacity: 0.4
  }}></div>
      {middleText && <>
          <Icon icon="circle" size={2} />
          <span style={{
    margin: "0 8px",
    fontWeight: "bold",
    color: color,
    opacity: 0.7
  }}>
            {middleText}
          </span>
          <Icon icon="circle" size={2} />
        </>}
      <div style={{
    flex: 1,
    height: "1px",
    background: "var(--lp-color-border-default)",
    opacity: 0.4
  }}></div>
      <span style={{
    marginLeft: "var(--lp-spacing-px-8)",
    opacity: 0.2
  }}>
        <span style={{
    display: "inline-block",
    transform: "scaleX(-1)"
  }}>
          <Icon icon="/snippets/assets/logos/Livepeer-Logo-Symbol-Theme.svg" />
        </span>
      </span>
    </div>;
};

<Tip>
  This page is an automated workflow.
  <Subtitle variant="changelog" style={{fontSize: "0.95rem", marginTop: "0.25rem"}}>Subscribe to this changelog's <LinkArrow label="RSS Feed" href="/v2/resources/changelog/website/rss.xml" newline={false} /></Subtitle>
</Tip>

<CustomDivider style={{margin: "-0.5rem 0 -1.5rem 0"}} />

Track changes to <LinkArrow label="Livepeer.org Website" href="https://github.com/livepeer/website" newline={false} /> on GitHub.

<CustomDivider />

<Update label="Fix cursor-pointer on buttons and header visibility after..." tags={["Commit"]} rss={{ title: "Livepeer.org Website: Fix cursor-pointer on buttons and header visibility after...", description: "Fix cursor-pointer on buttons and header visibility after primer (#7)" }} description={<Subtitle variant="changelog">March 2026</Subtitle>}>
  ## Fix cursor-pointer on buttons and header visibility after...

  <ScrollBox maxHeight="150px" showHint={false}>
    Fix cursor-pointer on buttons and header visibility after primer (#7)

    * fix: reset header visibility when navigating away from primer
      headerHidden was never reset when leaving /primer, keeping the
      header off-screen on subsequent pages.
    * style: add cursor-pointer and select-none to interactive elements
      Add cursor-pointer and select-none to all buttons, nav links, CTA
      links, filter pills, primer involved buttons, and full-click cards
      (blog post cards) to prevent accidental text selection on click.

    ***
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/website/commit/f03e755104f7074666d1b22f19ca8b36a63bcd8f" iconLeft="github" />
</Update>

<Update label="Update cost reduction claim from 10x to 6x on homepage (#4)" tags={["Commit"]} rss={{ title: "Livepeer.org Website: Update cost reduction claim from 10x to 6x on homepage (#4)", description: "Update cost reduction claim from 10x to 6x on homepage (#4)" }} description={<Subtitle variant="changelog">March 2026</Subtitle>}>
  ## Update cost reduction claim from 10x to 6x on homepage (#4)

  Update cost reduction claim from 10x to 6x on homepage (#4)

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/website/commit/2b567771bc614ba3c056e372f582fba7af5c0271" iconLeft="github" />
</Update>

<Update label="Add GA4 and Hotjar analytics (production only) (#1)" tags={["Commit"]} rss={{ title: "Livepeer.org Website: Add GA4 and Hotjar analytics (production only) (#1)", description: "Add GA4 and Hotjar analytics (production only) (#1)" }} description={<Subtitle variant="changelog">March 2026</Subtitle>}>
  ## Add GA4 and Hotjar analytics (production only) (#1)

  <ScrollBox maxHeight="150px" showHint={false}>
    Add GA4 and Hotjar analytics (production only) (#1)

    * Add GA4 and Hotjar analytics to match current livepeer.org
      Carry over the same analytics setup from the existing site: dual GA4
      measurement IDs (G-4BFECXFFJD, G-E4Q3BR9X93) and Hotjar (site 6388940),
      loaded via next/script with afterInteractive strategy.
    * Only load analytics scripts in production
      Gate GA4 and Hotjar behind NEXT\_PUBLIC\_VERCEL\_ENV === "production"
      to prevent tracking on Vercel preview and staging deployments.

    ***
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/website/commit/48131e1f51a4b731dff71583dddb3f6091cf855a" iconLeft="github" />
</Update>

<Update label="Replace Resend with Mailchimp for early access signups (#3)" tags={["Commit"]} rss={{ title: "Livepeer.org Website: Replace Resend with Mailchimp for early access signups (#3)", description: "Replace Resend with Mailchimp for early access signups (#3)" }} description={<Subtitle variant="changelog">March 2026</Subtitle>}>
  ## Replace Resend with Mailchimp for early access signups (#3)

  <ScrollBox maxHeight="150px" showHint={false}>
    Replace Resend with Mailchimp for early access signups (#3)
    Switch the email signup API route from Resend to the Mailchimp Marketing
    API. Subscribers are added to the configured audience with a "v2 Website
    Signups" tag. Handles duplicate members gracefully.
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/website/commit/646173b028641382d328cf60116070701f306887" iconLeft="github" />
</Update>

<Update label="Add redirects for old livepeer.org routes (#42)" tags={["Commit"]} rss={{ title: "Livepeer.org Website: Add redirects for old livepeer.org routes (#42)", description: "Add redirects for old livepeer.org routes (#42)" }} description={<Subtitle variant="changelog">March 2026</Subtitle>}>
  ## Add redirects for old livepeer.org routes (#42)

  <ScrollBox maxHeight="150px" showHint={false}>
    Add redirects for old livepeer.org routes (#42)

    * Add redirects for old livepeer.org routes and consolidate redirect pages (#42)
      Centralise all redirects in next.config.ts so old livepeer.org URLs
      don't 404 after the redesign goes live. Removes redundant redirect-only
      page files (developers, lpt, community, use-cases/world-models,
      use-cases/ai-generated-worlds) in favour of config-level 301s.
    * Use temporary (302) redirects instead of permanent (301)
      Keeps the option open to create dedicated pages for these routes
      in the future without browsers serving stale cached 301s.
    * Remove /reference/:path\* redirect – route doesn't exist
    * Remove /developers/quick-start redirect
    * Remove use-cases/world-models and ai-generated-worlds redirects
      These pages don't exist yet on the current site.
    * Remove /developers and /community redirects
      These pages don't exist on the old or current site.
    * Move /lpt redirect under old routes comment

    ***
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/website/commit/c69527e25fc7b37fdafd0dd465ab4e033b18d35f" iconLeft="github" />
</Update>

<Update label="Update Delegate links to explorer root and use 'Delegate ..." tags={["Commit"]} rss={{ title: "Livepeer.org Website: Update Delegate links to explorer root and use 'Delegate ...", description: "Update Delegate links to explorer root and use \"Delegate Stake\" terminology (#41)" }} description={<Subtitle variant="changelog">March 2026</Subtitle>}>
  ## Update Delegate links to explorer root and use 'Delegate ...

  Update Delegate links to explorer root and use "Delegate Stake" terminology (#41)

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/website/commit/461a3d686d82bfd41f77bbf8293840ac8b07b9bc" iconLeft="github" />
</Update>

<Update label="Align brand page hero with homepage grid system (#40)" tags={["Commit"]} rss={{ title: "Livepeer.org Website: Align brand page hero with homepage grid system (#40)", description: "Align brand page hero with homepage grid system (#40)" }} description={<Subtitle variant="changelog">March 2026</Subtitle>}>
  ## Align brand page hero with homepage grid system (#40)

  <ScrollBox maxHeight="150px" showHint={false}>
    Align brand page hero with homepage grid system (#40)
    Switch brand hero from percentage-based positioning inside an aspect-ratio
    wrapper to vw-based full-bleed positioning matching the homepage. Adds
    pulse trail animation, "GENERATING" label, mobile/desktop centre darken
    overlays, and increases ImageMask row density to 20.
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/website/commit/f82e3fdd6ade97dfd9c5f139cdb110eb1f548466" iconLeft="github" />
</Update>

<Update label="Redesign Ecosystem section with bento layout (#39)" tags={["Commit"]} rss={{ title: "Livepeer.org Website: Redesign Ecosystem section with bento layout (#39)", description: "Redesign Ecosystem section with bento layout (#39)" }} description={<Subtitle variant="changelog">March 2026</Subtitle>}>
  ## Redesign Ecosystem section with bento layout (#39)

  <ScrollBox maxHeight="150px" showHint={false}>
    Redesign Ecosystem section with bento layout (#39)

    * Redesign Ecosystem section with bento layout and update branding

    - Replace identical 2x2 grid with asymmetric bento layout: Daydream gets
      a featured card spanning the left column, other projects stack as compact
      logo+text cards on the right
    - Centre section header instead of split layout to differentiate from
      Why Livepeer section
    - Redesign Daydream visual with creative workspace UI (toolbar, canvas,
      pipeline frame strip)
    - Replace Livepeer Studio with Frameworks (frameworks.network)
    - Add stronger bottom vignette on Daydream card for logo contrast

    * Restore split alignment on Ecosystem section header

    ***
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/website/commit/913c19292817389df69be273f8a4f7ec012d6d92" iconLeft="github" />
</Update>

<Update label="Refine foundation page: add divider, constrain pillars he..." tags={["Commit"]} rss={{ title: "Livepeer.org Website: Refine foundation page: add divider, constrain pillars he...", description: "Refine foundation page: add divider, constrain pillars heading, simplify grid (#38)" }} description={<Subtitle variant="changelog">March 2026</Subtitle>}>
  ## Refine foundation page: add divider, constrain pillars he...

  <ScrollBox maxHeight="150px" showHint={false}>
    Refine foundation page: add divider, constrain pillars heading, simplify grid (#38)

    * Add gradient divider between mission and pillars sections
    * Constrain pillars heading width to ensure two-line layout on wide viewports
    * Simplify TileGrid by removing cutout/liquid glass overlay and adding fade mask
    * Move mission section outside hero wrapper for cleaner layout
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/website/commit/132200653f147ad5121036338eddc9c147b4c33d" iconLeft="github" />
</Update>

<Update label="Add visual layer stack demo to brand page and refine grid..." tags={["Commit"]} rss={{ title: "Livepeer.org Website: Add visual layer stack demo to brand page and refine grid...", description: "Add visual layer stack demo to brand page and refine grid system (#37)" }} description={<Subtitle variant="changelog">March 2026</Subtitle>}>
  ## Add visual layer stack demo to brand page and refine grid...

  <ScrollBox maxHeight="150px" showHint={false}>
    Add visual layer stack demo to brand page and refine grid system (#37)

    * Replace text-only layer stack with visual thumbnails showing each
      Holographik layer: Media (galaxy B\&W), Tile Grid, Geometric Shapes,
      and Combined with animated pulse trail
    * Fix grid sizing on brand page using container query units (100cqw)
    * Add liquid glass overlay to foundation page mission section
    * Cap foundation grid tiles at 160px for wide viewports
    * Darken foundation hero for better text contrast
    * Document ImageMask grid system in CLAUDE.md
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/website/commit/ec1a29e56c5768dcd352b665987298f701463932" iconLeft="github" />
</Update>
