Skip to content

Commit 33104b4

Browse files
V48: Exchange title Bitcodes then Bitcoins
Flip the marketing exchange headline to Exchange Bitcodes for Bitcoins.
1 parent 2e14d9b commit 33104b4

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

apps/uapi/components/bitcode/layout/BitcodePublicCopy/bitcode-public-copy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export const BITCODE_PUBLIC_COPY = {
8383
// Claim anchors in meaning: * ERC-1155 · ** Measured · *** AssetPacks (footnotes).
8484
testnetLaunch: {
8585
badge: 'Productionized Protocol',
86-
title: 'Exchange Bitcoins for Bitcodes.',
86+
title: 'Exchange Bitcodes for Bitcoins.',
8787
meaning:
8888
"Bitcode's canonical, commercial deployments are its mainnet ERC-1155* tokens, tradable Measured** AssetPacks*** artifacts, and delightful user applications.",
8989
flow: [

apps/uapi/components/marketing/MarketingLandingTestnetSection/MarketingLandingTestnetSection.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import {
2626
} from '@/components/marketing/MarketingLandingShared/MarketingLandingShared';
2727

2828
const TITLE_HIGHLIGHTS = [
29+
// Title order: Bitcodes ⇄ Bitcoins (see BITCODE_PUBLIC_COPY.testnetLaunch.title).
2930
{ text: 'Bitcodes', tone: 'green' as const },
3031
{ text: 'Bitcoins', tone: 'orange' as const },
3132
];
@@ -98,7 +99,8 @@ export function MarketingLandingTestnetSection() {
9899
<div className="relative overflow-visible rounded-none border border-emerald-300/16 bg-emerald-300/[0.045] px-4 py-4 backdrop-blur-sm phone:px-5 phone:py-5">
99100
{/*
100101
Absolute so the larger exchange mark never expands card layout.
101-
Bitcode (green) ⇄ Bitcoin (orange) — opposite of title word order.
102+
Title is Bitcodes ⇄ Bitcoins; corner stack matches title order
103+
(Bitcode green, then Bitcoin orange).
102104
*/}
103105
<div
104106
className="pointer-events-none absolute right-2 top-2 z-10 inline-flex items-center gap-1.5 phone:right-3 phone:top-3"

apps/uapi/tests/marketingLandingPage.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ describe('MarketingLandingPage', () => {
137137
expect(
138138
screen.getByText((_, node) => {
139139
if (node?.tagName !== 'H2') return false;
140-
return (node.textContent ?? '').includes('Exchange Bitcoins for Bitcodes.');
140+
return (node.textContent ?? '').includes('Exchange Bitcodes for Bitcoins.');
141141
}),
142142
).toBeInTheDocument();
143143
expect(screen.getByText('Bitcodes', { selector: 'h2 span' })).toBeInTheDocument();

0 commit comments

Comments
 (0)