···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>
1212-1313- <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.
99+ <div className="alt-card">
1010+ <h1>Download Apple Shortcut</h1>
1111+ <p>
1212+ 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.
1413 </p>
1515-1616- <p>Thank you for considering supporting me,</p>
17141818- <p>Dame</p>
1919- <p><a href="https://bsky.app/profile/dame.is" target="_blank" rel="noreferrer">@dame.is</a></p>
1515+ <div className="image-container">
1616+ <img
1717+ src="/how-to-use-cred-blue-shortcut.png"
1818+ alt="How to use Cred.blue Shortcut"
1919+ className="shortcut-image"
2020+ />
2121+ </div>
20222123 <div className="shortcut-buttons">
2222- <button
2424+ <button
2325 className="patreon-button"
2426 type="button"
2525- onClick={() => window.open(
2626- `https://cred.blue/shortcut`, '_blank'
2727- )}
2828- >
2929- Download Shortcut
3030- </button>
2727+ onClick={() => window.open('https://cred.blue/shortcut', '_blank')}
2828+ >
2929+ Download Shortcut
3030+ </button>
3131 </div>
3232- </div>
3232+3333+ <p>
3434+ 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.
3535+ </p>
3636+3737+ <div className="image-container">
3838+ <img
3939+ src="/enable-share-sheet.png"
4040+ alt="Enable Share Sheet"
4141+ className="shortcut-image"
4242+ />
4343+ </div>
4444+ </div>
3345 </main>
3446 </>
3547 );
3648};
37493838-export default Shortcut;
5050+export default Shortcut;