Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace wire.pdf with payment details page #74

Merged
merged 2 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
62 changes: 62 additions & 0 deletions src/pages/payment-details.astro
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>
20 changes: 4 additions & 16 deletions src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,6 @@ img {
height: auto;
}

a {
transition: all 0.5s ease;
}

@media (min-width: 576px) {
.container {
max-width: 540px;
Expand Down Expand Up @@ -156,6 +152,10 @@ a {
font-weight: 500;
letter-spacing: 0.5px;
text-decoration: none;
transition: all 0.5s ease;
}

header a, footer a {
color: #fff;
}

Expand Down Expand Up @@ -363,10 +363,6 @@ a {
}
}

.news__grid a {
color: #000;
}

.news__box {
position: relative;
max-width: 360px;
Expand Down Expand Up @@ -432,10 +428,6 @@ a {
margin-bottom: 20px;
}

.gi p a {
color: #000;
}

.gi p {
color: #444345;
margin-bottom: 24px;
Expand Down Expand Up @@ -797,10 +789,6 @@ table.sponsor-tiers td:first-child {
font-weight: bold;
}

.ac a {
color: black;
}

.donate .container {
max-width: none;
}