Skip to content

Commit 6abb1a2

Browse files
committed
Update prices
1 parent a72eae7 commit 6abb1a2

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

scripts/convert.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import sys
2+
3+
from currency_converter import CurrencyConverter
4+
5+
if __name__ == "__main__":
6+
c = CurrencyConverter()
7+
converted = c.convert(amount := int(sys.argv[1]), "GBP", "USD")
8+
print(f"{amount:.2f} GBP = {converted:.2f} USD")

src/pages/sponsorships.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ the video begins. Other footage can be overlayed.
2323
2424
| Length (sec) | Price (GBP) | Price (USD) |
2525
| :----------: | :---------: | :---------: |
26-
| 30-45 | 200 | 250 |
27-
| 46-60 | 250 | 320 |
26+
| 30-45 | 200 | 265 |
27+
| 46-60 | 250 | 330 |
2828
| 61+ | _Enquire_ | _Enquire_ |
2929
3030
## Endorsement
@@ -55,7 +55,7 @@ related, please see **Integrations**.
5555
5656
| Length (min) | Price (GBP) | Price (USD) |
5757
| :----------: | :---------: | :---------: |
58-
| 0-15 | 300 | 380 |
58+
| 0-15 | 300 | 395 |
5959
| 16+ | _Enquire_ | _Enquire_ |
6060
6161
_Please note that due to UK advertising law, these must be labelled as
@@ -65,9 +65,9 @@ advertisements in the title or thumbnail._
6565
6666
| Length (sec) | Price (GBP) | Price (USD) |
6767
| :----------: | :---------: | :---------: |
68-
| 0-30 | 150 | 190 |
69-
| 31-45 | 200 | 250 |
70-
| 46-60 | 250 | 320 |
68+
| 0-30 | 175 | 230 |
69+
| 31-45 | 200 | 265 |
70+
| 46-60 | 225 | 295 |
7171
7272
_Please note that due to UK advertising law, the titles of these must
7373
start with #ad._
@@ -76,7 +76,7 @@ start with #ad._
7676
const sponsorshipContentFooter = `
7777
Please make enquiries to [[email protected]](mailto:[email protected]).
7878
79-
_Prices last updated 19 Aug 2024._
79+
_Prices last updated 12 Sep 2024._
8080
`;
8181

8282
return (

0 commit comments

Comments
 (0)