|
1 | 1 | import Marquee from "react-fast-marquee";
|
2 |
| -import "./styles.module.css"; |
| 2 | +import styles from"./styles.module.css"; |
| 3 | + |
| 4 | +const WalletLogo = ({ href, src, alt }) => ( |
| 5 | + <a href={href}> |
| 6 | + <img className={styles.logo} src={src} alt={alt} /> |
| 7 | + </a> |
| 8 | +); |
3 | 9 |
|
4 | 10 | export default function WalletsUsingPayjoin() {
|
5 | 11 | return (
|
6 | 12 | <section className="flex flex-col justify-center gap-32 min-h-screen mb-40 w-full">
|
7 | 13 | <div className="flex flex-col items-center gap-8">
|
8 | 14 | <h1 className="text-6xl">Wallets Using Payjoin</h1>
|
9 |
| - |
10 | 15 | </div>
|
11 | 16 | <Marquee
|
12 | 17 | className="bg-tertiary w-32 h-[12vh]"
|
13 | 18 | gradient={true}
|
14 | 19 | gradientColor="#46192b"
|
15 | 20 | >
|
16 |
| - <a href="https://www.mutinywallet.com/"> |
17 |
| - <img |
18 |
| - src="/img/mutiny.svg" |
19 |
| - alt="Mutinywallet Logo" |
20 |
| - /> |
21 |
| - </a> |
22 |
| - <a href="https://bitmask.app"> |
23 |
| - <img |
24 |
| - src="/img/bitmask.svg" |
25 |
| - alt="bitmasklogo" |
26 |
| - /> |
27 |
| - </a> |
28 |
| - <a href="https://bluewallet.io"> |
29 |
| - <img src="/img/bluewallet.svg" alt="bluewallet logo" /> |
30 |
| - </a> |
31 |
| - <a href="https://btcpayserver.org"> |
32 |
| - <img src="/img/btcpay.svg" alt="btcpayserver logo" /> |
33 |
| - </a> |
34 |
| - <a href="https://github.com/JoinMarket-Org/joinmarket-clientserver"> |
35 |
| - <img |
36 |
| - src="/img/joinmarket.png" |
37 |
| - alt="joinmarket logo" |
38 |
| - /> |
39 |
| - </a> |
40 |
| - <a href="https://sparrowwallet.com"> |
41 |
| - <img |
42 |
| - src="/img/sparrow.png" |
43 |
| - alt="sparrow logo" |
44 |
| - /> |
45 |
| - </a> |
46 |
| - <a href="https://wasabiwallet.io"> |
47 |
| - <img src="/img/wasabi.svg" alt="wasabi logo" /> |
48 |
| - </a> |
| 21 | + <WalletLogo href="https://www.mutinywallet.com/" src="/img/mutiny.svg" alt="Mutinywallet Logo" /> |
| 22 | + <WalletLogo href="https://bitmask.app" src="/img/bitmask.svg" alt="bitmasklogo" /> |
| 23 | + <WalletLogo href="https://bluewallet.io" src="/img/bluewallet.svg" alt="bluewallet logo" /> |
| 24 | + <WalletLogo href="https://btcpayserver.org" src="/img/btcpay.svg" alt="btcpayserver logo" /> |
| 25 | + <WalletLogo href="https://github.com/JoinMarket-Org/joinmarket-clientserver" src="/img/joinmarket.png" alt="joinmarket logo" /> |
| 26 | + <WalletLogo href="https://sparrowwallet.com" src="/img/sparrow.png" alt="sparrow logo" /> |
| 27 | + <WalletLogo href="https://wasabiwallet.io" src="/img/wasabi.svg" alt="wasabi logo" /> |
49 | 28 | </Marquee>
|
50 |
| - {/* <div> |
51 |
| - <a href="https://payjoindevkit.org/" target="_blank"> |
52 |
| - <button className="font-extrabold bg-gradient-to-r bg-secondary border-white border-2 border-solid shadow-[0px_0px_10px_10px_rgba(0,0,0,0.3)] shadow-primary hover:scale-105 transition-all p-8 rounded-lg cursor-pointer text-5xl "> |
53 |
| - <span className="text-transparent bg-clip-text bg-gradient-to-r from-primary to-white"> |
54 |
| - Integrate Payjoin |
55 |
| - </span> |
56 |
| - </button> |
57 |
| - </a> |
58 |
| - </div> */} |
59 | 29 | <div className="flex flex-col gap-2 text-2xl">
|
60 | 30 | <span>If you are a developer seeking to enhance your wallet with Payjoin, check out</span>
|
61 | 31 | <a className="font-bold" target="_blank" href="https://payjoindevkit.org">Payjoin Dev kit</a>
|
|
0 commit comments