Skip to content

Commit b18d681

Browse files
committed
Merge branch 'ep2025' into ep2025-job-posts2
2 parents e9ea127 + be7150b commit b18d681

File tree

3 files changed

+50
-1
lines changed

3 files changed

+50
-1
lines changed

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

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ interface Feature {
1212
1313
interface TicketTierProps {
1414
title: string;
15-
educationPrice: number | string;
15+
educationPrice?: number | string;
1616
personalPrice: number | string;
1717
businessPrice: number | string;
1818
lateBusinessPrice?: number | string;
@@ -120,6 +120,31 @@ const tiers: TicketTierProps[] = [
120120
},
121121
],
122122
},
123+
124+
{
125+
title: "Remote",
126+
personalPrice: 80,
127+
businessPrice: 150,
128+
subtitle: "Conference days only",
129+
features: [
130+
{
131+
text: "Remote participation for Conference Days (16-18 July)",
132+
},
133+
{
134+
text: "Watch live talks, keynotes & panels in all 6 tracks",
135+
},
136+
{
137+
text: "Live text-based Q&A",
138+
},
139+
{
140+
text: "Interact with speakers and attendees in chat channels",
141+
},
142+
{
143+
text: "<strong>Proper VAT invoice with company name (Business only)</strong>. <i>Remote tickets invoiced by the EPS (Sweden); <strong>no VAT charged due to non-profit status</strong></i>.",
144+
icon: "ℹ️",
145+
},
146+
],
147+
},
123148
];
124149
125150
const formatPrice = (price: number | string) => {
@@ -141,6 +166,7 @@ const formatPrice = (price: number | string) => {
141166
<div>
142167
<Headline as="h4" id=`titer-${tier}` title={tier.title} />
143168
<div class="mt-4 space-y-2">
169+
{tier.educationPrice !== undefined && (
144170
<div>
145171
<div class="font-bold text-lg">
146172
Education:
@@ -149,6 +175,7 @@ const formatPrice = (price: number | string) => {
149175
</span>
150176
</div>
151177
</div>
178+
)}
152179

153180
<div>
154181
<div class="font-bold text-lg">

src/content/sponsors/qt/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Qt
3+
url: https://www.qt.io/
4+
socials:
5+
linkedin: "https://www.linkedin.com/company/qtgroup/"
6+
twitter: "https://twitter.com/qtproject"
7+
youtube: "https://www.youtube.com/QtStudios"
8+
description:
9+
"Qt is the leading independent technology for cross-platform development.
10+
Create connected devices, UIs and applications that run anywhere on any
11+
device, on any operating system at any time."
12+
tier: Patron
13+
logo_padding: 40px
14+
---

src/content/sponsors/qt/qt.svg

Lines changed: 8 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)