Skip to content

Commit

Permalink
Hero and important dates tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyGinnivan committed Aug 20, 2024
1 parent 86a83f6 commit ef6efa8
Show file tree
Hide file tree
Showing 2 changed files with 256 additions and 249 deletions.
71 changes: 35 additions & 36 deletions website/app/components/hero/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,41 +3,40 @@ 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="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>
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 />
<Workshops />
</Flex>
</Box>
)
}
Loading

0 comments on commit ef6efa8

Please sign in to comment.