Skip to content

Commit 09ab13d

Browse files
committed
feat: add link to osmosis
1 parent 5ead24e commit 09ab13d

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

apps/namadillo/src/App/Swap/SwapModule.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Panel } from "@namada/components";
22
import { useAtomValue } from "jotai";
3+
import { Link } from "react-router-dom";
34
import { swapStatusAtom } from "./state/atoms";
45
import { SwapCalculations } from "./SwapCalculations";
56
import { 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>

0 commit comments

Comments
 (0)