-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from dddwa/on-the-day-updates
On the day updates
- Loading branch information
Showing
15 changed files
with
675 additions
and
298 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
) | ||
} |
Oops, something went wrong.