summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-12 13:44:55 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-12 13:47:45 +0100
commita2194edb572f4cc05d482e9114558584343b4c82 (patch)
tree303e2507ce6342ad491dfa318588bf82c77a6950 /src/components
parent9080741a41ce398d05a3ad7745241c1b47800d4e (diff)
Includes payment buttons in LallansIssue.astro
Diffstat (limited to 'src/components')
-rw-r--r--src/components/LallansIssue.astro3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/LallansIssue.astro b/src/components/LallansIssue.astro
index 37f1417..915c17d 100644
--- a/src/components/LallansIssue.astro
+++ b/src/components/LallansIssue.astro
@@ -5,6 +5,7 @@ import type LallansIssue from "../types/LallansIssue";
import type Locale from "../types/Locale";
import LallansIssueContributions from "./LallansIssueContributions.astro";
import LallansIssueContributors from "./LallansIssueContributors.astro";
+import PayPalButtons from "./PayPalButtons.astro";
interface Props {
issue: LallansIssue;
@@ -23,7 +24,7 @@ const t = translate(locale);
<div class="lallans-issue__header-block-end">
<img alt="" src={`/images/lallans/issue${issue.issueNumber}.jpg`} />
- <!-- TODO: payment buttons -->
+ <PayPalButtons />
</div>
</div>