Skip to content

Commit

Permalink
Merge pull request #25 from dddwa/on-the-day-updates
Browse files Browse the repository at this point in the history
On the day updates
  • Loading branch information
JakeGinnivan authored Nov 11, 2024
2 parents ece52a2 + 2929a98 commit 013a8a9
Show file tree
Hide file tree
Showing 15 changed files with 675 additions and 298 deletions.
2 changes: 1 addition & 1 deletion website-content/pages/conference-day.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ If you wish to report an issue anonymously, you can do so using [this form](http
- If you don't feel well ahead of DDD Perth, please stay home and tune into the livestreams instead. Please see below for further details.
- If on the day you feel unwell, please mask up, inform the help desk and leave the event. Provide your details so we can check you're going okay and then seek medical assistance.

{conference.Handbook && `You can also download much of the information on this page as a PDF: [Download handbook (PDF)](/static/docs/${conference.Handbook})`}
{props.conference.handbook && `You can also download much of the information on this page as a PDF: [Download handbook (PDF)](${props.conference.handbook})`}
4 changes: 1 addition & 3 deletions website-content/pages/support.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@ summary: 'How to get help at DDD Perth'
last-update: June 6, 2023,
---

## Getting Help

Find the nearest DDD Perth team member by looking for the Volunteer DDD Perth t-shirts.
If you have any questions about DDD which is not answered by the website, please feel free to contact us at [[email protected]](mailto:[email protected])
77 changes: 40 additions & 37 deletions website/app/components/hero/hero.tsx
Original file line number Diff line number Diff line change
@@ -1,42 +1,45 @@
import { DateTime } from 'luxon'
import { Year } from '~/lib/config-types'
import { Box, Flex } from '../../../styled-system/jsx'
import ImportantDates, { Workshops } from '../page-components/important-dates'
import { ImportantDates, Workshops } from '../page-components/important-dates'
import { HomepageHeroPanel } from './hero-panel'

export function Hero() {
return (
<Box overflowX="hidden">
<HomepageHeroPanel />
<Flex flexDirection="column" width="fit" mx="auto" maxWidth={800} gap={12}>
<Flex
className={`paragraph-wrapper`}
direction="column"
fontSize={{ base: 'lg', md: '2xl' }}
fontWeight="medium"
color="white"
gap={6}
mx={{ base: 8, md: 6, lg: 'auto' }}
>
<p>
DDD Perth is Perth’s largest community run conference for the tech community. Our goal is to create an
approachable event that appeals to the whole community, especially people that don’t normally get to attend
or speak at conferences. The conference is run on a Saturday, and strives to be inclusive of everyone in the
Perth tech community.
</p>
<p>
DDD Perth started out its life as part of the Developer! Developer! Developer! series of events and while
our heritage is as a developer-focussed conference, DDD Perth is not just for developers, but for all
professionals in the software industry. These days we don’t expand DDD - it’s not an acronym for us anymore,
but if people insist then we might say Designer, Developer and Data Scientist, or is it DevOps, Data
architect, distributed tester?
</p>
<p>
Check out the agenda and talks from previous years , or hear more about how we do what we do on our blog.
</p>
</Flex>
export function Hero({ year, currentDate }: { year: Year; currentDate: DateTime }) {
return (
<Box overflowX="hidden">
<HomepageHeroPanel />
<Flex flexDirection="column" width="fit" mx="auto" maxWidth={800} gap={12}>
<Flex
className={`paragraph-wrapper`}
direction="column"
fontSize={{ base: 'lg', md: '2xl' }}
fontWeight="medium"
color="white"
gap={6}
mx={{ base: 8, md: 6, lg: 'auto' }}
>
<p>
DDD Perth is Perth’s largest community run conference for the tech community. Our goal is to
create an approachable event that appeals to the whole community, especially people that don’t
normally get to attend or speak at conferences. The conference is run on a Saturday, and strives
to be inclusive of everyone in the Perth tech community.
</p>
<p>
DDD Perth started out its life as part of the Developer! Developer! Developer! series of events
and while our heritage is as a developer-focussed conference, DDD Perth is not just for
developers, but for all professionals in the software industry. These days we don’t expand DDD -
it’s not an acronym for us anymore, but if people insist then we might say Designer, Developer
and Data Scientist, or is it DevOps, Data architect, distributed tester?
</p>
<p>
Check out the agenda and talks from previous years , or hear more about how we do what we do on
our blog.
</p>
</Flex>

<ImportantDates />
<Workshops />
</Flex>
</Box>
)
<ImportantDates year={year} currentDate={currentDate} />
<Workshops currentDate={currentDate} />
</Flex>
</Box>
)
}
Loading

0 comments on commit 013a8a9

Please sign in to comment.