···11+// src/components/About/About.jsx
22+33+import React from 'react';
44+import './Supporter.css';
55+66+const Supporter = () => {
77+ return (
88+ <>
99+ <main className="supporter-page">
1010+ <div className="alt-card">
1111+ <h1>Become a Supporter</h1>
1212+ <div className="supporter-buttons">
1313+ <button
1414+ className="patreon-button"
1515+ type="button"
1616+ onClick={() => window.open(
1717+ `https://patreon.com/dameis`, '_blank'
1818+ )}
1919+ >
2020+ Monthly Donation
2121+ </button>
2222+ <button
2323+ className="ko-fi-button"
2424+ type="button"
2525+ onClick={() => window.open(
2626+ `https://ko-fi.com/dameis`, '_blank'
2727+ )}
2828+ >
2929+ One-time Tip
3030+ </button>
3131+ </div>
3232+ <p>My name is Dame. I'm an artist and software experimentalist who has been creating resources, tools, and content for the AT Protocol + Bluesky community for the past several months during my professional (unpaid) sabbatical. I've been a part of Bluesky since almost the very beginning (user #1,216), and I've developed a keen interest in helping make the "Atmosphere" better.</p>
3333+3434+ <p>Today I'm launching the beta version of a new platform I've created called cred.blue. It allows you to generate a Bluesky "credibility" score, helps you understand your AT Protocol data footprint, and let's you vibe check strangers and new accounts. Bots, fake accounts, and bad actors are all over the place these days, so it's my hope that this platform can play a small part in helping you better navigate the digital spaces we inhabit.</p>
3535+3636+ <p>Launching and maintaining a project of this nature requires a significant time investment as well as ongoing costs in the form of servers, hosting, and various services. It's my hope that through this Patreon I'll be able to at least cover the upkeep costs of the various free resources I've made. I should be able to do that well for around ~$350. Beyond that, I'm interested in focusing more of my time towards creating new projects, tools, and resources that can help people live healthier digital lives... both within the AT Protocol + Bluesky ecosystem and beyond.</p>
3737+3838+ <p>Thank you for considering supporting me,</p>
3939+4040+ <p>Dame</p>
4141+ </div>
4242+ </main>
4343+ </>
4444+ );
4545+};
4646+4747+export default Supporter;