tangled
alpha
login
or
join now
margin.at
/
margin
88
fork
atom
Write on the margins of the internet. Powered by the AT Protocol.
margin.at
extension
web
atproto
comments
88
fork
atom
overview
issues
4
pulls
1
pipelines
add discord to right sidebar
scanash.com
1 month ago
a36cbd19
7bd58a13
+13
1 changed file
expand all
collapse all
unified
split
web
src
components
RightSidebar.jsx
+13
web/src/components/RightSidebar.jsx
···
8
8
SiBluesky,
9
9
SiApple,
10
10
SiKofi,
11
11
+
SiDiscord,
11
12
} from "react-icons/si";
12
13
import { FaEdge } from "react-icons/fa";
13
14
import { useAuth } from "../context/AuthContext";
···
164
165
<div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
165
166
<SiBluesky size={16} />
166
167
Bluesky
168
168
+
</div>
169
169
+
<ExternalLink size={12} />
170
170
+
</a>
171
171
+
<a
172
172
+
href="https://discord.gg/ZQbkGqwzBH"
173
173
+
target="_blank"
174
174
+
rel="noopener noreferrer"
175
175
+
className="right-link"
176
176
+
>
177
177
+
<div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
178
178
+
<SiDiscord size={16} />
179
179
+
Discord
167
180
</div>
168
181
<ExternalLink size={12} />
169
182
</a>