Skip to content

Commit

Permalink
Update prices
Browse files Browse the repository at this point in the history
  • Loading branch information
parafoxia committed Sep 12, 2024
1 parent a72eae7 commit 6abb1a2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions scripts/convert.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import sys

from currency_converter import CurrencyConverter

if __name__ == "__main__":
c = CurrencyConverter()
converted = c.convert(amount := int(sys.argv[1]), "GBP", "USD")
print(f"{amount:.2f} GBP = {converted:.2f} USD")
14 changes: 7 additions & 7 deletions src/pages/sponsorships.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ the video begins. Other footage can be overlayed.
| Length (sec) | Price (GBP) | Price (USD) |
| :----------: | :---------: | :---------: |
| 30-45 | 200 | 250 |
| 46-60 | 250 | 320 |
| 30-45 | 200 | 265 |
| 46-60 | 250 | 330 |
| 61+ | _Enquire_ | _Enquire_ |
## Endorsement
Expand Down Expand Up @@ -55,7 +55,7 @@ related, please see **Integrations**.
| Length (min) | Price (GBP) | Price (USD) |
| :----------: | :---------: | :---------: |
| 0-15 | 300 | 380 |
| 0-15 | 300 | 395 |
| 16+ | _Enquire_ | _Enquire_ |
_Please note that due to UK advertising law, these must be labelled as
Expand All @@ -65,9 +65,9 @@ advertisements in the title or thumbnail._
| Length (sec) | Price (GBP) | Price (USD) |
| :----------: | :---------: | :---------: |
| 0-30 | 150 | 190 |
| 31-45 | 200 | 250 |
| 46-60 | 250 | 320 |
| 0-30 | 175 | 230 |
| 31-45 | 200 | 265 |
| 46-60 | 225 | 295 |
_Please note that due to UK advertising law, the titles of these must
start with #ad._
Expand All @@ -76,7 +76,7 @@ start with #ad._
const sponsorshipContentFooter = `
Please make enquiries to [carberra.business@gmail.com](mailto:carberra.business@gmail.com).
_Prices last updated 19 Aug 2024._
_Prices last updated 12 Sep 2024._
`;

return (
Expand Down

0 comments on commit 6abb1a2

Please sign in to comment.