Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

Hero section Get Started button points to wrong URL #78

Description

@c-shubh

The Get Started buttons throughout the RedwoodJS home page take us to https://redwoodjs.com/docs/quick-start (Constants.GET_STARTED), except the button in the hero section.

The Get Started button in the hero section is the first button we see on mobile. Clicking it takes us to https://redwoodjs.com/blog/rsc-now-in-redwoodjs (Constants.BIGHORN_FEATURES) instead of the quick start page.

It's a simple change:

diff --git a/web/src/components/Home/HomeHero/HomeHero.tsx b/web/src/components/Home/HomeHero/HomeHero.tsx
index 2058e33..eff24bb 100644
--- a/web/src/components/Home/HomeHero/HomeHero.tsx
+++ b/web/src/components/Home/HomeHero/HomeHero.tsx
@@ -14,7 +14,7 @@ const HomeHero = () => {
       </h2>
 
       <a
-        href={Constants.BIGHORN_FEATURES}
+        href={Constants.GET_STARTED}
         className="button mb-4 inline-block text-sm md:mb-8 md:text-base"
         rel="noreferrer"
       >

Let me know if I should open a PR to fix this.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions