File tree Expand file tree Collapse file tree 2 files changed +17
-7
lines changed
apps/dashboard/src/app/bridge Expand file tree Collapse file tree 2 files changed +17
-7
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { FaqAccordion } from "@/components/blocks/faq-section";
66import ChainsImage from "../assets/chains.png" ;
77import RoutesImage from "../assets/routes.png" ;
88import TokensImage from "../assets/tokens.png" ;
9- import { bridgeStats } from "../data" ;
9+ import { bridgeStats , bridgeStatsNumbers } from "../data" ;
1010import { AnimatedNumbers } from "./client/animated-numbers" ;
1111import { UniversalBridgeEmbed } from "./client/UniversalBridgeEmbed" ;
1212import { BridgePageHeader } from "./header" ;
@@ -47,15 +47,19 @@ function HeadingSection(props: { title: React.ReactNode }) {
4747 </ p >
4848
4949 < div className = "flex gap-3 items-center lg:justify-center flex-wrap" >
50- < DataSquare data = { 90 } label = "Chains Supported" src = { ChainsImage } />
5150 < DataSquare
52- data = { 6700 }
51+ data = { bridgeStatsNumbers . supportedChains }
52+ label = "Chains Supported"
53+ src = { ChainsImage }
54+ />
55+ < DataSquare
56+ data = { bridgeStatsNumbers . supportedTokens }
5357 label = "Tokens Supported"
5458 src = { TokensImage }
5559 format = { { notation : "compact" } }
5660 />
5761 < DataSquare
58- data = { 14000000 }
62+ data = { bridgeStatsNumbers . supportedRoutes }
5963 format = { { notation : "compact" } }
6064 label = "Routes Available"
6165 src = { RoutesImage }
Original file line number Diff line number Diff line change 11export const bridgeStats = {
2- supportedChains : "90+" ,
3- supportedTokens : "6700+" ,
4- supportedRoutes : "14M+" ,
2+ supportedChains : "95+" ,
3+ supportedTokens : "10,000+" ,
4+ supportedRoutes : "15M+" ,
5+ } ;
6+
7+ export const bridgeStatsNumbers = {
8+ supportedChains : 95 ,
9+ supportedTokens : 10000 ,
10+ supportedRoutes : 15000000 ,
511} ;
You can’t perform that action at this time.
0 commit comments