chore: add support link

This commit is contained in:
kawamataryo 2024-11-09 05:50:31 +09:00
parent 8092a208c7
commit 6c7a953344

View File

@ -121,13 +121,13 @@ const Sidebar = ({
id={key} id={key}
checked={filterValue[key]} checked={filterValue[key]}
onChange={() => onChangeFilter(key)} onChange={() => onChangeFilter(key)}
className="checkbox checkbox-primary" className="checkbox checkbox-primary checkbox-sm"
/> />
</label> </label>
</div> </div>
))} ))}
<div className="divider" /> <div className="divider" />
<div className="flex items-center gap-2 mb-4"> <div className="flex items-center gap-2 mb-3">
<svg <svg
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
fill="none" fill="none"
@ -149,11 +149,17 @@ const Sidebar = ({
label={actionMode === ACTION_MODE.FOLLOW ? "Follow All" : "Block All"} label={actionMode === ACTION_MODE.FOLLOW ? "Follow All" : "Block All"}
/> />
<p className="text-sm text-gray-500"> <p className="text-sm text-gray-500">
* User detection is not perfect and may include false positives. User detection is not perfect and may include false positives.
</p> </p>
</div> </div>
<div className="mt-auto"> <div className="mt-auto">
<div className="divider" /> <div className="divider" />
<p className="mb-1">
If you find Sky Follower Bridge helpful, I'd appreciate your support to help me maintain and improve it
<a href="https://buymeacoffee.com/kawamata" className="link ml-2">
Support me here.
</a>
</p>
<SocialLinks /> <SocialLinks />
</div> </div>
</aside> </aside>