Skip to content

chore: update wording#4339

Open
NathanFlurry wants to merge 1 commit intomainfrom
chore-udpate-wording
Open

chore: update wording#4339
NathanFlurry wants to merge 1 commit intomainfrom
chore-udpate-wording

Conversation

@NathanFlurry
Copy link
Member

Description

Please include a summary of the changes and the related issue. Please also include relevant motivation and context.

Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

How Has This Been Tested?

Please describe the tests that you ran to verify your changes.

Checklist:

  • My code follows the style guidelines of this project
  • I have performed a self-review of my code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes

@NathanFlurry
Copy link
Member Author

NathanFlurry commented Mar 3, 2026

This change is part of the following stack:

Change managed by git-spice.

@railway-app
Copy link

railway-app bot commented Mar 3, 2026

🚅 Deployed to the rivet-pr-4339 environment in rivet-frontend

Service Status Web Updated (UTC)
website 😴 Sleeping (View Logs) Web Mar 3, 2026 at 10:08 pm
frontend-inspector 😴 Sleeping (View Logs) Web Mar 3, 2026 at 6:22 am
frontend-cloud ❌ Build Failed (View Logs) Web Mar 3, 2026 at 6:17 am
ladle ❌ Build Failed (View Logs) Web Mar 3, 2026 at 6:14 am
mcp-hub ✅ Success (View Logs) Web Mar 3, 2026 at 6:14 am

@claude
Copy link

claude bot commented Mar 3, 2026

PR Review: chore: update wording (#4339)

This PR updates the hero headline and adds three new marketing sections (BenchmarksSection, CombineServicesSection, AIAppsSection) to the homepage.


Issues

Bug: Missing clipPath definition in RivetActorIcon

In CombineServicesSection.tsx, the custom SVG references clipPath="url(#_clip1)" (twice) but <clipPath id="_clip1"> is never defined anywhere in the SVG. This means the clipping has no effect and the icon may render incorrectly — some paths that should be masked will be visible.

// Two groups reference this, but it's never defined:
<g clipPath="url(#_clip1)">

This looks like the SVG was exported from a design tool (e.g. Figma) and the clip definition was lost during cleanup. Verify the icon renders as intended and either add the missing <defs> block or remove the unused clipPath attributes.


Grammar: Parallel structure broken in hero headline

The updated headline reads:

AI needs to hold state, run for a long time, and realtime.

"realtime" is a noun/adjective here but the list uses verb phrases ("hold state", "run for a long time"). Consider:

AI needs to hold state, run for a long time, and respond in realtime.


Benchmark accuracy: "0ms added latency"

The claim 0ms added latency is physically impossible for any network-based system and may draw scrutiny. Consider a more defensible phrasing like ~0ms, <1ms, or anchoring it to a specific measurement (e.g., "in-process latency").


Minor Notes

PR title vs. scope
The commit type chore: update wording doesn't reflect the 341-line addition of three new React components. Consider feat(website): add benchmarks, combine-services, and AI apps sections (or similar) to better represent what was actually changed.

SVG animation approach mixing in CombineServicesSection
The animated dots use Framer Motion for opacity control but native SVG <animateMotion> for the path traversal, with fill="freeze" and no repeatCount. This fires once per in-view event. If the intent is a one-shot animation this is fine, but if you want it to loop you'll need repeatCount="indefinite" on the <animateMotion> element (and update the Framer Motion opacity animation to match). The hybrid approach is also harder to maintain — consider consolidating to Framer Motion's useMotionValue + MotionPath if looping behavior is added later.

Accessibility: SVG diagrams lack ARIA labels
The inline SVG diagrams in AIAppsSection are purely decorative but have no aria-hidden="true" attribute. Screen readers will attempt to read the raw text nodes ("AI", "actor", "actor", "actor") which is confusing. Add aria-hidden="true" to each diagram <svg>.

// Example fix in AIAppsSection card.diagram svgs:
<svg viewBox="0 0 280 120" fill="none" className='h-auto w-full' aria-hidden="true">

The same applies to the connector SVGs in CombineServicesSection.


Looks Good

  • Section layout and animation patterns are consistent with the existing codebase style.
  • The useInView hook in CombineServicesSection with once: true is the right call for the path-drawing animation.
  • Mobile fallback in CombineServicesSection (simple down-arrow SVG) is a clean solution.
  • Component file structure follows the existing sections/ conventions.

@NathanFlurry NathanFlurry changed the title chore: udpate wording chore: update wording Mar 3, 2026
@pkg-pr-new
Copy link

pkg-pr-new bot commented Mar 3, 2026

More templates

@rivetkit/cloudflare-workers

pnpm add https://pkg.pr.new/rivet-dev/rivet/@rivetkit/cloudflare-workers@4339

@rivetkit/framework-base

pnpm add https://pkg.pr.new/rivet-dev/rivet/@rivetkit/framework-base@4339

@rivetkit/next-js

pnpm add https://pkg.pr.new/rivet-dev/rivet/@rivetkit/next-js@4339

@rivetkit/react

pnpm add https://pkg.pr.new/rivet-dev/rivet/@rivetkit/react@4339

rivetkit

pnpm add https://pkg.pr.new/rivet-dev/rivet/rivetkit@4339

@rivetkit/sql-loader

pnpm add https://pkg.pr.new/rivet-dev/rivet/@rivetkit/sql-loader@4339

@rivetkit/sqlite-vfs

pnpm add https://pkg.pr.new/rivet-dev/rivet/@rivetkit/sqlite-vfs@4339

@rivetkit/traces

pnpm add https://pkg.pr.new/rivet-dev/rivet/@rivetkit/traces@4339

@rivetkit/workflow-engine

pnpm add https://pkg.pr.new/rivet-dev/rivet/@rivetkit/workflow-engine@4339

@rivetkit/virtual-websocket

pnpm add https://pkg.pr.new/rivet-dev/rivet/@rivetkit/virtual-websocket@4339

@rivetkit/engine-runner

pnpm add https://pkg.pr.new/rivet-dev/rivet/@rivetkit/engine-runner@4339

@rivetkit/engine-runner-protocol

pnpm add https://pkg.pr.new/rivet-dev/rivet/@rivetkit/engine-runner-protocol@4339

commit: 55ac506

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant