Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hero section Get Started button points to wrong URL #78

Open
c-shubh opened this issue Dec 24, 2024 · 0 comments
Open

Hero section Get Started button points to wrong URL #78

c-shubh opened this issue Dec 24, 2024 · 0 comments

Comments

@c-shubh
Copy link

c-shubh commented Dec 24, 2024

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.

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

No branches or pull requests

1 participant