lighning tips

This commit is contained in:
overcuriousity 2025-08-23 00:30:24 +02:00
parent dad5e5ea0c
commit 20a4c71d02
2 changed files with 58 additions and 4 deletions

View File

@ -1,5 +1,5 @@
{
"_variables": {
"lastUpdateCheck": 1754571688630
"lastUpdateCheck": 1755901660216
}
}

View File

@ -216,8 +216,32 @@ import BaseLayout from '../layouts/BaseLayout.astro';
<div style="background-color: var(--color-bg-secondary); padding: 1.25rem; border-radius: 0.5rem;">
<h4 style="margin: 0 0 0.5rem 0; color: var(--color-accent);">⚡ Unterstützung</h4>
<p style="margin: 0;">
Kleine Spenden zur Infrastruktur-Finanzierung nehme ich auch gerne an, wenn es sein muss.
Fragt einfach nach der Lightning-Adresse oder BTC-Adresse!
Kleine Spenden zur Infrastruktur-Finanzierung nehme ich auch gerne an.
Spenden werden bevorzugt per Lightning entgegengenommen!
<script type="module" src="https://esm.sh/simple-boost@latest"></script>
<div style="display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem;">
<simple-boost
currency="eur"
amount="0.1"
nwc="nostr+walletconnect://c645b012b242219570a60a537d393b0f49f78c74956310a7801d3e0ceeb3bdd6?relay=wss://nostr.mikoshi.de&secret=53f1535553a3e587a911d132ef4815fc9b19d89bc9019db45d9a53d866e5ed37"
class="boost-btn"
>Boost €0.10</simple-boost>
<simple-boost
currency="eur"
amount="0.5"
nwc="nostr+walletconnect://c645b012b242219570a60a537d393b0f49f78c74956310a7801d3e0ceeb3bdd6?relay=wss://nostr.mikoshi.de&secret=53f1535553a3e587a911d132ef4815fc9b19d89bc9019db45d9a53d866e5ed37"
class="boost-btn"
>Boost €0.50</simple-boost>
<simple-boost
currency="eur"
amount="1.0"
nwc="nostr+walletconnect://c645b012b242219570a60a537d393b0f49f78c74956310a7801d3e0ceeb3bdd6?relay=wss://nostr.mikoshi.de&secret=53f1535553a3e587a911d132ef4815fc9b19d89bc9019db45d9a53d866e5ed37"
class="boost-btn"
>Boost €1.00</simple-boost>
</div>
</p>
</div>
</div>
@ -231,4 +255,34 @@ import BaseLayout from '../layouts/BaseLayout.astro';
</p>
</div>
</section>
<script type="module" src="https://esm.sh/simple-boost@latest"></script>
</BaseLayout>
<style>
simple-boost.boost-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.6rem 1.25rem;
border-radius: 0.75rem;
font-weight: 600;
font-size: 0.9rem;
background-color: var(--color-accent);
color: #fff;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
simple-boost.boost-btn:hover {
background-color: var(--color-primary);
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}
simple-boost.boost-btn:active {
transform: translateY(0);
box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
</style>