From 00c06ba1c2e9215e655d53699242b4a5cdab3020 Mon Sep 17 00:00:00 2001 From: Jason Schwarz Date: Wed, 29 Apr 2026 14:06:25 -0300 Subject: [PATCH] content(learn): retitle swap-value article and replace bottom CTA with linked diagram De-emphasize the FastRPC vs. Fast Swaps framing per content review: - Restore title to "Same Trade, Different Outcome: Where Your Swap Value Actually Goes" - Move the diagram from the article intro to the bottom and link the entire image to "/" - Hide the global "Try Fast Protocol" CTA on this slug since the linked image now serves as its in-body CTA --- content/learn/where-your-swap-value-goes.mdx | 6 ++-- src/app/learn/[slug]/page.tsx | 38 ++++++++++---------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/content/learn/where-your-swap-value-goes.mdx b/content/learn/where-your-swap-value-goes.mdx index 70aba2a6..7395acb8 100644 --- a/content/learn/where-your-swap-value-goes.mdx +++ b/content/learn/where-your-swap-value-goes.mdx @@ -1,5 +1,5 @@ --- -title: "Same Trade, Different Outcome: FastRPC (and other DEX) vs. Fast Swaps" +title: "Same Trade, Different Outcome: Where Your Swap Value Actually Goes" description: "Most swaps leak value to slippage, suboptimal routing, and mev. Fast Swaps capture that surplus and return it to you through Miles." slug: "where-your-swap-value-goes" category: "Fast Protocol" @@ -23,8 +23,6 @@ They're not. Every swap — no matter how simple — has hidden dynamics that determine what you actually receive. And in most cases, users are leaving value on the table without realizing it. -![Diagram comparing swap value flow on a typical DEX vs. Fast Swaps](https://pub-c59e6dbe877c4b8db6ffacb766f2d8c7.r2.dev/fast-dapp/assets/RPC%20vs.%20Fast%20Swaps.png) - ## The hidden tax on every swap When you execute a trade on a typical DEX, several things happen behind the scenes: @@ -86,6 +84,6 @@ You're already making the trade. Now make it where it actually pays you back. - +[![Diagram comparing swap value flow on a typical DEX vs. Fast Swaps](https://pub-c59e6dbe877c4b8db6ffacb766f2d8c7.r2.dev/fast-dapp/assets/RPC%20vs.%20Fast%20Swaps.png)](/) diff --git a/src/app/learn/[slug]/page.tsx b/src/app/learn/[slug]/page.tsx index cee06da3..a96ef37a 100644 --- a/src/app/learn/[slug]/page.tsx +++ b/src/app/learn/[slug]/page.tsx @@ -156,24 +156,26 @@ export default async function LearnArticlePage({ params }: { params: Promise<{ s dangerouslySetInnerHTML={{ __html: html }} /> - {/* CTA */} -
- - Try Fast Protocol - - - - -
+ {/* CTA — hidden when the article supplies its own in-body CTA */} + {slug !== "where-your-swap-value-goes" && ( +
+ + Try Fast Protocol + + + + +
+ )} {/* FAQ section — rendered from frontmatter */} {frontmatter.faq && frontmatter.faq.length > 0 && (