-
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 #1 from dddwa/initial-redesign
Initial redesign
- Loading branch information
Showing
17 changed files
with
652 additions
and
855 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,16 +1,20 @@ | ||
import { styled } from '../../styled-system/jsx' | ||
import AboriginalLogo from '~/images/svg/aboriginal_ddd.svg?react' | ||
import { Box, Divider, Flex, styled } from '../../styled-system/jsx' | ||
|
||
export function Acknowledgement() { | ||
return ( | ||
<styled.section position="relative" bg="white" w="100%" display="flex"> | ||
<styled.div w="100%" position="relative" maxW="1200px" m="0 auto"> | ||
<styled.div w="100%" position="relative" p="6"> | ||
<styled.p fontSize="sm"> | ||
We acknowledge the Whadjuk Nyoongar people as the Traditional Owners of the lands and waters | ||
where Perth city is situated today, and pay our respect to Elders past and present. | ||
</styled.p> | ||
</styled.div> | ||
</styled.div> | ||
</styled.section> | ||
) | ||
} | ||
export const Acknowledgement = () => ( | ||
<Box gradientFrom="#0E0E43" gradientTo="#0B0B11" pt={12} pb={24} bgGradient="to-b"> | ||
<Flex direction="column" gap={6} maxW="1200px" mx="auto"> | ||
<Divider color="#8D8DFF33" mb={6} /> | ||
<AboriginalLogo width={58} /> | ||
<styled.p fontSize="xl" color="#C2C2FF"> | ||
It’s such a privledge to be able to run this conference and DDD Perth would love to acknowledge the traditional | ||
custodians of the land in which DDD is created, presented, and shared, the{' '} | ||
<styled.span color="white" fontWeight="semibold"> | ||
Whadjuk people of the Noongar Nation | ||
</styled.span>{' '} | ||
and their connections to land, sea and community. We pay our respect to their Elders past, present and emerging, | ||
and extend that respect to all Aboriginal and Torres Strait Islander peoples today. | ||
</styled.p> | ||
</Flex> | ||
</Box> | ||
) |
Oops, something went wrong.