From f920dcf2b7b99a26b5a534bd5932d634447501d3 Mon Sep 17 00:00:00 2001 From: zzq0826 <12936800+zzq0826@users.noreply.github.com> Date: Fri, 27 Feb 2026 14:39:33 +0800 Subject: [PATCH] feat: change hero CTA from "Bridge to Scroll" to "Swap on Scroll" Update the landing page hero button to link to swap.scroll.io instead of the bridge, to experiment with inbound traffic from scroll.io. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/app/_components/Hero/index.tsx | 11 +++-------- src/constants/link.ts | 1 + 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/src/app/_components/Hero/index.tsx b/src/app/_components/Hero/index.tsx index 4978b60b9..bd619012d 100644 --- a/src/app/_components/Hero/index.tsx +++ b/src/app/_components/Hero/index.tsx @@ -5,7 +5,7 @@ import { Box, Container, Stack, Typography } from "@mui/material" import HeroMobileSvg from "@/assets/svgs/landingpage/hero-bg-mobile.svg?url" import HeroSvg from "@/assets/svgs/landingpage/hero-bg.svg?url" import Button from "@/components/Button" -import { BRIDGE_URL, DOC_URL } from "@/constants/link" +import { DOC_URL, SWAP_URL } from "@/constants/link" const ANNOUNCEMENT_HEIGHT = "0rem" @@ -44,13 +44,8 @@ const LandingHero = () => { Build now - diff --git a/src/constants/link.ts b/src/constants/link.ts index bbf1bbfd3..1b7e54f62 100644 --- a/src/constants/link.ts +++ b/src/constants/link.ts @@ -5,6 +5,7 @@ export const LEVEL_UP_URL = "https://www.levelup.xyz/" const USER_PORTAL_BASE_URL = process.env.NEXT_PUBLIC_USER_PORTAL_BASE_URL export const BRIDGE_URL = `${USER_PORTAL_BASE_URL}/bridge` +export const SWAP_URL = "https://swap.scroll.io" export const ECOSYSTEM_URL = "/ecosystem" export const SESSIONS_URL = `${USER_PORTAL_BASE_URL}/sessions`