Skip to content

Commit d323fbb

Browse files
authored
Merge pull request #89 from dddwa/fix/sponsor-logos-and-deploymnet
feat: Update eventsAirEventId parameter default value and add Hello I…
2 parents 7322d53 + f276e55 commit d323fbb

7 files changed

Lines changed: 35 additions & 19 deletions

File tree

infra/app/ddd.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ param eventsAirClientId string
2727
@secure()
2828
param eventsAirClientSecret string
2929
param eventsAirTenantId string
30-
param eventsAirEventId string
30+
param eventsAirEventId string = ''
3131
@secure()
3232
param titoSecurityToken string
3333
@secure()

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ param eventsAirClientId string
4848
@secure()
4949
param eventsAirClientSecret string
5050
param eventsAirTenantId string
51-
param eventsAirEventId string
51+
param eventsAirEventId string = ''
5252
@secure()
5353
param titoSecurityToken string
5454
@secure()

infra/main.parameters.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"value": "${EVENTS_AIR_TENANT_ID}"
6262
},
6363
"eventsAirEventId": {
64-
"value": "${EVENTS_AIR_EVENT_ID}"
64+
"value": "${EVENTS_AIR_EVENT_ID=}"
6565
},
6666
"titoSecurityToken": {
6767
"value": "${TITO_SECURITY_TOKEN}"

website/app/config/years/2025.server.ts

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -91,21 +91,21 @@ export const conference2025: ConferenceYear = {
9191

9292
sponsors: {
9393
platinum: [
94-
{
95-
name: 'Patient Zero',
96-
website: 'https://www.pz.com.au/',
97-
logoUrlDarkMode: '/images/sponsors/2025-patient-zero-dark.svg',
98-
logoUrlLightMode: '/images/sponsors/2025-patient-zero-light.svg',
99-
quote: "At first, when we heard that DDD Perth was held in a stadium, we thought there was no way that could be true. Turns out it is. Well done, Perth! Once we learned the truth of the matter, we just had to come and check it out ourselves and share our zombie sock love. Yeah, we love zombies if the name didn't give it away. And we love our zombie sock merch. That, plus, our co-CEO Paul loves to hear himself talk and our other one, Demelza, loves a stage.",
100-
},
101-
{
102-
name: 'MakerX',
103-
website: 'https://makerx.com.au/',
104-
logoUrlDarkMode: '/images/sponsors/2025-makerx-dark.svg',
105-
logoUrlLightMode: '/images/sponsors/2025-makerx-light.svg',
106-
quote: "DDD Perth embodies everything we believe in at MakerX - making technology accessible, fostering diversity, and building high-performing teams. These aren't just ideals we talk about; they're the proven foundation of successful technology companies.The conference itself is a masterclass in bringing people together. With 1,600 passionate technologists gathering in one place, we're witnessing real-time ecosystem building - where today's attendees become tomorrow's co-founders, where nervous first-time speakers evolve into industry leaders, and where casual conversations spark the collaborations that define our tech future. At MakerX, we know that helping our partners succeed requires more than writing code. It's about weaving together culture, connections, and capabilities - transforming research breakthroughs and bold ideas into sustainable businesses that create real impact. That's exactly what DDD Perth facilitates at scale and we're proud to be onboard to support the event for another year.",
107-
},
108-
],
94+
{
95+
name: 'Patient Zero',
96+
website: 'https://www.pz.com.au/',
97+
logoUrlDarkMode: '/images/sponsors/2025-patient-zero-dark.svg',
98+
logoUrlLightMode: '/images/sponsors/2025-patient-zero-light.svg',
99+
quote: "At first, when we heard that DDD Perth was held in a stadium, we thought there was no way that could be true. Turns out it is. Well done, Perth! Once we learned the truth of the matter, we just had to come and check it out ourselves and share our zombie sock love. Yeah, we love zombies if the name didn't give it away. And we love our zombie sock merch. That, plus, our co-CEO Paul loves to hear himself talk and our other one, Demelza, loves a stage.",
100+
},
101+
{
102+
name: 'MakerX',
103+
website: 'https://makerx.com.au/',
104+
logoUrlDarkMode: '/images/sponsors/2025-makerx-dark.svg',
105+
logoUrlLightMode: '/images/sponsors/2025-makerx-light.svg',
106+
quote: "DDD Perth embodies everything we believe in at MakerX - making technology accessible, fostering diversity, and building high-performing teams. These aren't just ideals we talk about; they're the proven foundation of successful technology companies.The conference itself is a masterclass in bringing people together. With 1,600 passionate technologists gathering in one place, we're witnessing real-time ecosystem building - where today's attendees become tomorrow's co-founders, where nervous first-time speakers evolve into industry leaders, and where casual conversations spark the collaborations that define our tech future. At MakerX, we know that helping our partners succeed requires more than writing code. It's about weaving together culture, connections, and capabilities - transforming research breakthroughs and bold ideas into sustainable businesses that create real impact. That's exactly what DDD Perth facilitates at scale and we're proud to be onboard to support the event for another year.",
107+
},
108+
],
109109
gold: [
110110
{
111111
name: 'Versent',
@@ -215,6 +215,12 @@ If you'd like to learn more about the work our computing and software teams are
215215
},
216216
],
217217
community: [
218+
{
219+
name: 'Hello Initative',
220+
website: 'https://www.helloinitiative.org.au/',
221+
logoUrlDarkMode: '/images/sponsors/2025-hello-initative-dark.png',
222+
logoUrlLightMode: '/images/sponsors/2025-hello-initative-light.png',
223+
},
218224
{
219225
name: 'WAITTA',
220226
website: 'https://www.waitta.asn.au/',

website/app/routes/_layout.app.tsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,17 @@ export default function AppDownloadPage() {
9090
</styled.a>
9191
</styled.div>
9292

93-
<Box mt={8} p={6} bgColor="blue.50" borderRadius="lg" textAlign="center" maxW="2xl">
93+
<styled.a
94+
href="/agenda"
95+
display="inline-flex"
96+
transition="transform 0.2s"
97+
_hover={{ transform: 'scale(1.05)' }}
98+
textDecoration="underline"
99+
>
100+
View Agenda on Website
101+
</styled.a>
102+
103+
<Box p={6} bgColor="blue.50" borderRadius="lg" textAlign="center" maxW="2xl">
94104
<styled.h3 fontSize="lg" fontWeight="semibold" mb={2} color="blue.900">
95105
Pro Tip
96106
</styled.h3>
63.2 KB
Loading
63.2 KB
Loading

0 commit comments

Comments
 (0)