feat: add spoofing toggles
This commit is contained in:
+50
-1
@@ -127,8 +127,57 @@ export default function Home() {
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
{/* Control panels */}
|
{/* toggles */}
|
||||||
<section className={styles.panelGrid}>
|
<section className={styles.panelGrid}>
|
||||||
|
<div className={styles.card}>
|
||||||
|
<h3 className={styles.cardTitle}>Spoofer Toggles</h3>
|
||||||
|
|
||||||
|
<div className={styles.toggleRow}>
|
||||||
|
<div className={styles.toggleInfo}>
|
||||||
|
<span className={styles.toggleLabel}>Item Spoofing</span>
|
||||||
|
<span className={styles.toggleDesc}>Spoof inventory items, addons, and offerings</span>
|
||||||
|
</div>
|
||||||
|
<label className={styles.switch}>
|
||||||
|
<input type="checkbox" checked={store.spoofItems} onChange={(e) => store.setToggle('spoofItems', e.target.checked)} />
|
||||||
|
<span className={styles.slider}></span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={styles.toggleRow}>
|
||||||
|
<div className={styles.toggleInfo}>
|
||||||
|
<span className={styles.toggleLabel}>Perk Spoofing</span>
|
||||||
|
<span className={styles.toggleDesc}>Unlock all perk slots and custom builds</span>
|
||||||
|
</div>
|
||||||
|
<label className={styles.switch}>
|
||||||
|
<input type="checkbox" checked={store.spoofPerks} onChange={(e) => store.setToggle('spoofPerks', e.target.checked)} />
|
||||||
|
<span className={styles.slider}></span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={styles.toggleRow}>
|
||||||
|
<div className={styles.toggleInfo}>
|
||||||
|
<span className={styles.toggleLabel}>Catalog Spoofing</span>
|
||||||
|
<span className={styles.toggleDesc}>Unlock cosmetics, characters, and outfits</span>
|
||||||
|
</div>
|
||||||
|
<label className={styles.switch}>
|
||||||
|
<input type="checkbox" checked={store.spoofCatalog} onChange={(e) => store.setToggle('spoofCatalog', e.target.checked)} />
|
||||||
|
<span className={styles.slider}></span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={styles.toggleRow}>
|
||||||
|
<div className={styles.toggleInfo}>
|
||||||
|
<span className={styles.toggleLabel}>DLC Spoofing</span>
|
||||||
|
<span className={styles.toggleDesc}>Bypass Steam, Epic, and Xbox DLC ownership</span>
|
||||||
|
</div>
|
||||||
|
<label className={styles.switch}>
|
||||||
|
<input type="checkbox" checked={store.spoofDLCs} onChange={(e) => store.setToggle('spoofDLCs', e.target.checked)} />
|
||||||
|
<span className={styles.slider}></span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* profile */}
|
||||||
<div className={styles.card}>
|
<div className={styles.card}>
|
||||||
<h3 className={styles.cardTitle}>Profile Import / Export</h3>
|
<h3 className={styles.cardTitle}>Profile Import / Export</h3>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user