Schedule posts to Bluesky with Cloudflare workers. skyscheduler.work
cf tool bsky-tool cloudflare bluesky schedule bsky service social-media cloudflare-workers
at main 9 lines 246 B view raw
1 2export default function LogoutButton() { 3 return (<div> 4 <button class="outline w-full btn-error logout" hx-post="/account/logout" 5 hx-target="body" hx-confirm="Are you sure you want to logout?"> 6 Logout 7 </button> 8 </div>); 9};