Skip to content

Commit

Permalink
Replace wire.pdf with payment details page
Browse files Browse the repository at this point in the history
  • Loading branch information
gmta committed Aug 20, 2024
1 parent db5ea30 commit 66369ab
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 3 deletions.
7 changes: 4 additions & 3 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ export default defineConfig({
"/announcement": "/posts/announcement",
"/announcement/": "/posts/announcement",
"/announcement.html": "/posts/announcement",
"/fork": "/posts/fork",
"/fork/": "/posts/fork",
"/fork.html": "/posts/fork",
"/thanks": "/posts/thanks",
"/thanks/": "/posts/thanks",
"/thanks.html": "/posts/thanks",
"/why-ladybird": "/posts/why-ladybird",
"/why-ladybird/": "/posts/why-ladybird",
"/why-ladybird.html": "/posts/why-ladybird",
"/fork": "/posts/fork",
"/fork/": "/posts/fork",
"/fork.html": "/posts/fork",
"/wire.pdf": "/payment-details",
},
});
Binary file removed public/wire.pdf
Binary file not shown.
61 changes: 61 additions & 0 deletions src/pages/payment-details.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
import BaseLayout from "@/layouts/base.astro";
---

<BaseLayout
title="Payment details"
description="Ladybird Browser Initiative bank account details"
>
<div class="min-h-screen">
<section class="hero hero_single">
<div class="container custom-row">
<div class="hero__tf">
<h1 class="text-[#fff]">Payment details</h1>
</div>
</div>
</section>
<section class="p-5">
<div class="container">
<table class="my-16 text-left">
<tr>
<th class="pe-5">Beneficiary account name</th>
<td>Ladybird Browser Initiative</td>
</tr>
<tr>
<th class="pe-5">Beneficiary account number</th>
<td>80011453086</td>
</tr>
<tr>
<th class="pe-5">Beneficiary address</th>
<td>2261 Market Street STE 10029, San Francisco, CA 94114-1612</td>
</tr>
<tr>
<th class="pe-5">Bank name</th>
<td>JPMorgan Chase Bank, N.A.</td>
</tr>
<tr>
<th class="pe-5">Bank address</th>
<td>383 Madison Avenue, New York, United States</td>
</tr>
<tr>
<th class="pe-5">Bank SWIFT code</th>
<td>CHASUS33XXX</td>
</tr>
<tr>
<th class="pe-5">ACH routing code</th>
<td>322271627</td>
</tr>
<tr>
<th class="pe-5">Wire routing code</th>
<td>021000021</td>
</tr>
<tr>
<th class="pe-5">EIN</th>
<td>99-2154861</td>
</tr>
</table>
Please <a href="mailto:[email protected]">contact us</a> if you have any questions.
</div>
</section>
</div>
</BaseLayout>

0 comments on commit 66369ab

Please sign in to comment.