2023-11-23 17:09:26 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< link rel = "stylesheet" href = "/hectabitstyles.css" >
< link rel = "icon" href = "favicon.svg" >
< title > Donate to HectaBit< / title >
< / head >
< body >
< div class = "closebar" >
< button id = "sidebutton" > > < / button >
< / div >
< div class = "sidebar" >
< img src = "/assets/img/hectabit.svg" >
< h1 > Main Website< / h1 >
< ul >
< li > < a href = "https://hectabit.org/" target = "_blank" > Home< / a > < / li >
< li > < a href = "https://hectabit.org/donate" target = "_blank" > Donate< / a > < / li >
< li > < a href = "https://hectabit.org/halloffame" target = "_blank" > Hall of fame< / a > < / li >
< / ul >
< h1 > HectaBit Software< / h1 >
< ul >
2024-01-27 14:40:15 +00:00
< li > < a href = "https://notes.hectabit.org" target = "_blank" > Notes< / a > < / li >
2024-01-27 14:44:52 +00:00
< li > < a href = "https://evolutionos.hectabit.org/" target = "_blank" > EvolutionOS< / a > < / li >
< li > < a href = "https://basalt.hectabit.org" target = "_blank" > Basalt Linux< / a > < / li >
2023-11-23 17:09:26 +00:00
< / ul >
< h1 > HectaBit Services< / h1 >
< ul >
2024-01-27 14:40:15 +00:00
< li > < a href = "https://centrifuge.hectabit.org" target = "_blank" > Centrifuge< / a > < / li >
2023-11-23 17:09:26 +00:00
< li > < a href = "https://matrix.to/#/#devel:hectabit.org" target = "_blank" > Matrix< / a > < / li >
< li > < a href = "https://mail.hectabit.org" target = "_blank" > Mail< / a > < / li >
< / ul >
< div class = "spacer" > < / div >
< div class = "spacer" > < / div >
< div class = "spacer" > < / div >
< / div >
< div class = "content" >
< h1 > Thank you for (considering) donating to HectaBit!< / h1 >
< script async
src="https://js.stripe.com/v3/buy-button.js">
< / script >
< stripe-buy-button
buy-button-id="buy_btn_1NopvkFdJPyNGPx53QKxpTDm"
publishable-key="pk_live_51NoSUtFdJPyNGPx50X0MQi5UJjSmVwxDTkgVNwVMbaP1nX31MMwDGxgpw8RSFt8nKxBDNJuRbPIn38MaeguXphvb00EwntFyfn"
>
< / stripe-buy-button >
< div class = "spacer" > < / div >
< li > < p1 > By donating, you can request extended storage on centrifuge, viewing of moderation logs, and beta access to HectaBit services! Also, I know this is probably overstated, but it REALLY helps us out a LOT. Thank you < 3 ! < / p1 > < / li >
< / div >
< script >
document.getElementById("sidebutton").addEventListener("click", function() {
var sidebar = document.querySelector(".sidebar");
var content = document.querySelector(".content");
sidebar.classList.toggle("hidden");
content.classList.toggle("expanded");
sidebar.classList.toggle("display");
});
< / script >
< / body >
< / html >