-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace wire.pdf with payment details page
- Loading branch information
Showing
3 changed files
with
66 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
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> |