Skip to content

Commit ab2c3df

Browse files
committed
copy: update migration asset access text
1 parent 447329c commit ab2c3df

4 files changed

Lines changed: 20 additions & 9 deletions

File tree

app/globals.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1576,18 +1576,23 @@ body.page--article h1 {
15761576
position: relative;
15771577
display: grid;
15781578
gap: 0.35rem;
1579+
width: 100%;
15791580
margin-bottom: 1.5rem;
15801581
}
15811582

15821583
.claim-title {
15831584
margin: 0;
1585+
width: 100%;
1586+
max-width: none;
15841587
font-size: clamp(1.6rem, 2.4vw, 2.2rem);
1588+
line-height: 1.08;
15851589
letter-spacing: 0;
15861590
}
15871591

15881592
.claim-subtitle {
15891593
margin: 0;
1590-
max-width: 60ch;
1594+
width: 100%;
1595+
max-width: none;
15911596
color: var(--muted);
15921597
}
15931598

app/migration/ClaimClient.jsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ export default function ClaimClient() {
223223
!isClaiming;
224224

225225
const cardState = canClaim ? "ready" : isClaiming ? "claiming" : "disabled";
226-
const claimButtonLabel = isClaiming ? "Migrating..." : isAlreadyClaimed ? "Migrated" : "Migrate";
226+
const claimButtonLabel = isClaiming ? "Claiming..." : isAlreadyClaimed ? "Claimed" : "Claim";
227227

228228
let hint = claimMessage;
229229
if (!hint) {
@@ -252,9 +252,12 @@ export default function ClaimClient() {
252252
<main className="wrap claim-main" id="main">
253253
<section className="claim-card" data-claim-state={cardState}>
254254
<header className="claim-card__header">
255-
<h1 className="claim-title">Migrate RSS3</h1>
255+
<h1 className="claim-title">Access VSL Assets</h1>
256256
<p className="claim-subtitle">
257-
Connect your wallet to check migration eligibility, then migrate.
257+
VSL users can access their migrated assets here. $POWER is
258+
automatically migrated to $RSS3. For Folo wallets, migration is
259+
completed automatically; transfers, withdrawals, and other wallet
260+
actions should continue through Folo Wallet.
258261
</p>
259262
</header>
260263

app/migration/ClaimIsland.jsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ function ClaimFallback() {
1212
<main className="wrap claim-main" id="main">
1313
<section className="claim-card" data-claim-state="disabled">
1414
<header className="claim-card__header">
15-
<h1 className="claim-title">Migrate RSS3</h1>
15+
<h1 className="claim-title">Access VSL Assets</h1>
1616
<p className="claim-subtitle">
17-
Connect your wallet to check migration eligibility, then migrate.
17+
VSL users can access their migrated assets here. $POWER is
18+
automatically migrated to $RSS3. For Folo wallets, migration is
19+
completed automatically; transfers, withdrawals, and other wallet
20+
actions should continue through Folo Wallet.
1821
</p>
1922
</header>
2023

@@ -46,7 +49,7 @@ function ClaimFallback() {
4649

4750
<div className="claim-actions">
4851
<button className="button button--primary" type="button" disabled>
49-
Migrate
52+
Claim
5053
</button>
5154
<div className="claim-hint">Loading wallet interface...</div>
5255
</div>

app/migration/page.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import SiteHeader from "../components/SiteHeader";
33
import ClaimIsland from "./ClaimIsland";
44

55
export const metadata = {
6-
title: "Migrate RSS3",
7-
description: "Migrate your RSS3 tokens with a Merkle proof.",
6+
title: "Access VSL Assets",
7+
description: "VSL users can access migrated assets here.",
88
};
99

1010
export default function ClaimPage() {

0 commit comments

Comments
 (0)