File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
apps/namadillo/src/App/Swap Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 11import { Panel } from "@namada/components" ;
22import { useAtomValue } from "jotai" ;
3+ import { Link } from "react-router-dom" ;
34import { swapStatusAtom } from "./state/atoms" ;
45import { SwapCalculations } from "./SwapCalculations" ;
56import { SwapHeader } from "./SwapHeader" ;
@@ -32,8 +33,14 @@ export const SwapModule = (): JSX.Element => {
3233 { ! [ "Broadcasting" , "Confirming" , "Completed" , "Error" ] . includes (
3334 status . t
3435 ) && (
35- < p className = "w-full mt-6 text-center font-light" >
36- Powered by Osmosis
36+ < p className = "w-full mt-6 text-center font-light hover:text-purple-500 transition-colors" >
37+ < Link
38+ to = "https://osmosis.zone"
39+ target = "_blank"
40+ rel = "noreferrer nofollow"
41+ >
42+ Powered by Osmosis
43+ </ Link >
3744 </ p >
3845 ) }
3946 </ section >
You can’t perform that action at this time.
0 commit comments