Skip to content

Commit ebf3818

Browse files
Merge pull request #75 from DanGould/fix-used-by-styles
Fix WalletLogo in UsedBy
2 parents f49609d + bdce597 commit ebf3818

File tree

2 files changed

+15
-45
lines changed

2 files changed

+15
-45
lines changed

src/components/UsedBy/index.tsx

Lines changed: 14 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,31 @@
11
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+
);
39

410
export default function WalletsUsingPayjoin() {
511
return (
612
<section className="flex flex-col justify-center gap-32 min-h-screen mb-40 w-full">
713
<div className="flex flex-col items-center gap-8">
814
<h1 className="text-6xl">Wallets Using Payjoin</h1>
9-
1015
</div>
1116
<Marquee
1217
className="bg-tertiary w-32 h-[12vh]"
1318
gradient={true}
1419
gradientColor="#46192b"
1520
>
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" />
4928
</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> */}
5929
<div className="flex flex-col gap-2 text-2xl">
6030
<span>If you are a developer seeking to enhance your wallet with Payjoin, check out</span>
6131
<a className="font-bold" target="_blank" href="https://payjoindevkit.org">Payjoin Dev kit</a>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
img {
1+
.logo {
22
@apply mx-10;
33
height: 8vh;
44
}

0 commit comments

Comments
 (0)