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 && (