Skip to content

Commit

Permalink
Merge pull request #1 from dddwa/initial-redesign
Browse files Browse the repository at this point in the history
Initial redesign
  • Loading branch information
JakeGinnivan authored Aug 8, 2024
2 parents 67ed769 + 1d6cbe9 commit 1ef50ee
Show file tree
Hide file tree
Showing 17 changed files with 652 additions and 855 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@
"vite": "~5.2.7",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "1.4.0"
"vitest": "1.4.0",
"framer-motion": "^11.3.6",
"nanoid": "^5.0.7"
},
"pnpm": {
"overrides": {
Expand Down
31 changes: 31 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 19 additions & 15 deletions website/app/components/acknowledgement.tsx
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>
)
Loading

0 comments on commit 1ef50ee

Please sign in to comment.