Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
616d5ff to
5a278a5
Compare
Route builders to Daydream as the current path for building on Livepeer. Hero CTA now says "Start building" and scrolls to a new section that explains the Livepeer/Daydream relationship with a WebGL rainbow gradient mouse-follow effect inspired by daydream.live. Updated ecosystem heading and button hover states across hero, header, and new section. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The canvas was showing a full rainbow gradient on mobile since there are no mousemove events to control the reveal map. Now the canvas only renders on devices with a fine pointer (mouse/trackpad). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
When scrolling with a trackpad, mousemove events don't fire but the section moves underneath the stationary cursor. Now we track the last known viewport cursor position and recompute section-relative coords on both mousemove and scroll, so the glow follows correctly during scroll. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This reverts commit c45b23b.
Previously, the effect only updated on mousemove, so two-finger scroll (which doesn't fire mousemove) wouldn't move the glow even though the section was moving under a stationary cursor. Now we track the last viewport cursor position via a window-level mousemove listener, and the render loop recomputes section-relative coords every frame via getBoundingClientRect() — which automatically accounts for scroll. Only marks the cursor as active when strictly over the section bounds, avoiding cutoff artifacts when the cursor is in adjacent sections. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
317265a to
0173e7e
Compare
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Remove Terms and Privacy rows from ecosystem detail card - Use internal-nav arrow (→) instead of external (↗) on ecosystem cards since they now link to internal /ecosystem/[slug] pages Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Frameworks: DDVTech - The Lot Radio: The Lot Radio - Streamplace: Aquareum Inc Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Two-column grid with fixed label column and left-aligned values - Unified text sizing (xs) across labels and values for coherence - Subtler group titles: uppercase, tracking-wider, text-white/50 - Tighter padding, lighter border/background, smaller radius - Removed per-row dividers — relies on spacing for hierarchy Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Ecosystem detail pages
/ecosystem/[slug]for every ecosystem project, with a two-column layout: an Overview rendered from markdown plus a sticky metadata sidebar grouped into Details, Connect, and Resourcesdata/ecosystem.jsonto per-project markdown files atcontent/ecosystem/*.md, mirroring the existing blog pipeline. Each file holds structured frontmatter (made by, X, GitHub, contact, docs, support, terms, privacy) plus an overview body/ecosystem, and the four bento cards inBuiltOnLivepeernow route to internal detail pages instead of opening external URLs. Builders get Livepeer context first, then click out from the detail pageTest plan
/ecosystemlisting renders, search and category filtering still work, cards navigate to internal detail pages/ecosystem/daydream(and other slugs) render with the populated sidebar; sticky positioning works on desktop and the sidebar collapses below content on mobile/ecosystem/{slug}instead of external URLs🤖 Generated with Claude Code