···11// src/components/Shortcut/Shortcut.jsx
22-32import React from 'react';
43import './Shortcut.css';
54···76 return (
87 <>
98 <main className="shortcut-page">
1010- <div className="alt-card">
1111- <h1>Download Apple Shortcut</h1>
99+ <div className="alt-card">
1010+ <h1>Apple Shortcut</h1>
12111313- <p>If you have an iPhone, iPad, or Macbook, you can download a special Apple Shortcut to your device that will allow you to quickly check a Bluesky account's cred.blue score while you're scrolling inside of the Bluesky app.
1212+ <div className="shortcut-buttons">
1313+ <button
1414+ className="shortcut-button"
1515+ type="button"
1616+ onClick={() => window.open('https://www.icloud.com/shortcuts/d399b453ae774a43a95e0caf35c120c7', '_blank')}
1717+ >
1818+ Download
1919+ </button>
2020+ <p className="disclaimer">
2121+ Version 1.0
2222+ </p>
2323+ </div>
2424+2525+ <p>
2626+ If you have an iPhone, you can download a special Apple Shortcut to your device that will allow you to quickly check a Bluesky account's cred.blue score while you're scrolling inside of the Bluesky app.
1427 </p>
1515-1616- <p>Thank you for considering supporting me,</p>
17281818- <p>Dame</p>
1919- <p><a href="https://bsky.app/profile/dame.is" target="_blank" rel="noreferrer">@dame.is</a></p>
2929+ <p>
3030+ You don't even have to go to an account's profile for the shortcut to work. You can tap the share button on any post, profile, or even use the "copy author DID" or "copy post URI" buttons in developer mode, letting you quickly check a score even from within a thread or a feed.
3131+ </p>
20322121- <div className="shortcut-buttons">
2222- <button
2323- className="patreon-button"
2424- type="button"
2525- onClick={() => window.open(
2626- `https://cred.blue/shortcut`, '_blank'
2727- )}
2828- >
2929- Download Shortcut
3030- </button>
3333+ <div className="image-container">
3434+ <img
3535+ src="/how-to-use-cred-blue-shortcut.png"
3636+ alt="How to use Cred.blue Shortcut"
3737+ className="shortcut-image"
3838+ />
3139 </div>
3232- </div>
4040+4141+ <p>
4242+ Once you have the Apple Shortcut installed, go through the setup process to enter your username and then check to make sure that the Share Sheet feature has been enabled.
4343+ </p>
4444+4545+ <div className="image-container">
4646+ <img
4747+ src="/enable-share-sheet.png"
4848+ alt="Enable Share Sheet"
4949+ className="shortcut-image"
5050+ />
5151+ </div>
5252+ </div>
3353 </main>
3454 </>
3555 );
3656};
37573838-export default Shortcut;
5858+export default Shortcut;