Skip to content

Commit 1d7e59d

Browse files
clytaemnestraclaude
andcommitted
tickets: enable page, add to navbar, adjust prices for Polish VAT
- Add /tickets to enabledPages whitelist - Add Tickets to Attend nav section (header + footer quick links) - Reduce personal/education prices by 2% to account for 23% Polish VAT Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent f71f544 commit 1d7e59d

3 files changed

Lines changed: 19 additions & 10 deletions

File tree

src/components/ticket-tiers/ticket-tiers.astro

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ interface TicketTierProps {
2424
const tiers: TicketTierProps[] = [
2525
{
2626
title: "Tutorial Only",
27-
educationPrice: 100,
28-
personalPrice: 200,
27+
educationPrice: 98,
28+
personalPrice: 196,
2929
businessPrice: 400,
3030
features: [
3131
{
@@ -59,10 +59,10 @@ const tiers: TicketTierProps[] = [
5959
},
6060
{
6161
title: "Conference Only",
62-
educationPrice: 135,
63-
personalPrice: 300,
62+
educationPrice: 132,
63+
personalPrice: 294,
6464
businessPrice: 500,
65-
latePersonalPrice: 450,
65+
latePersonalPrice: 441,
6666
lateBusinessPrice: 750,
6767
features: [
6868
{
@@ -90,10 +90,10 @@ const tiers: TicketTierProps[] = [
9090
},
9191
{
9292
title: "Combined",
93-
educationPrice: 210,
94-
personalPrice: 450,
93+
educationPrice: 206,
94+
personalPrice: 441,
9595
businessPrice: 800,
96-
latePersonalPrice: 675,
96+
latePersonalPrice: 662,
9797
lateBusinessPrice: 1200,
9898
features: [
9999
{
@@ -124,7 +124,7 @@ const tiers: TicketTierProps[] = [
124124
125125
{
126126
title: "Remote",
127-
personalPrice: 80,
127+
personalPrice: 78,
128128
businessPrice: 150,
129129
subtitle: "Conference days only",
130130
features: [

src/data/enabledPages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"/krakow",
2121
"/about",
2222
"/sponsorship/sponsor",
23-
"/sponsorship/information"
23+
"/sponsorship/information",
24+
"/tickets"
2425
],
2526
"navItems": ["Programme", "Venue", "About"]
2627
}

src/data/links.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@
5050
{
5151
"name": "Attend",
5252
"items": [
53+
{
54+
"name": "Tickets",
55+
"path": "/tickets"
56+
},
5357
{
5458
"name": "Code of Conduct",
5559
"path": "https://www.europython-society.org/coc/"
@@ -78,6 +82,10 @@
7882
{
7983
"name": "Quick links",
8084
"items": [
85+
{
86+
"name": "Tickets",
87+
"path": "/tickets"
88+
},
8189
{
8290
"name": "Kraków",
8391
"path": "/krakow"

0 commit comments

Comments
 (0)