├── .devops ├── azure-pipelines.yml └── templates │ ├── makerx-build-nextjs-app.yml │ └── makerx-deploy-azure-webapp.yml ├── .editorconfig ├── .env.local ├── .eslintrc ├── .gitattributes ├── .github └── workflows │ └── lhci.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CONTRIBUTING.MD ├── Context └── Config.tsx ├── LICENSE.md ├── README.md ├── auditjs.json ├── components ├── 2022agenda.tsx ├── 2023agenda.tsx ├── ActionBar │ ├── ActionBar.styled.ts │ ├── ActionBar.test.tsx │ └── ActionBar.tsx ├── Agenda │ ├── Agenda.styled.tsx │ ├── Agenda.tsx │ ├── AgendaContext.tsx │ ├── AgendaSession.styled.tsx │ ├── AgendaSession.tsx │ ├── AgendaTime.tsx │ ├── Agendatime.styled.tsx │ ├── SessionDetails.styled.tsx │ ├── SessionDetails.tsx │ └── layout.ts ├── Badge │ ├── Badge.styled.tsx │ └── Badge.tsx ├── FAQList │ ├── FaqDetail.styled.ts │ ├── FaqDetail.tsx │ └── FaqList.tsx ├── Feedback │ ├── Feedback.styled.tsx │ ├── FeedbackFetch.ts │ ├── FeedbackTimeTesting.tsx │ ├── FormReducers.ts │ ├── SessionInput.styled.tsx │ └── SessionInput.tsx ├── Hero │ ├── Hero.styled.tsx │ └── hero.tsx ├── ImportantDatesList │ ├── ImportantDate.styled.ts │ ├── ImportantDateTile.tsx │ ├── ImportantDateTileInline.tsx │ └── importantDatesList.tsx ├── Keynotes.tsx ├── PageBanner │ ├── PageBanner.styled.tsx │ └── PageBanner.tsx ├── SkipToContent │ ├── SkipToContent.styled.tsx │ └── SkipToContent.tsx ├── Sponsors │ ├── Sponsors.styled.tsx │ └── sponsors.tsx ├── TestingControl │ ├── TestingControl.styled.ts │ ├── TestingControl.tsx │ ├── TestingControlConsts.ts │ └── TestingControlUtils.ts ├── Tickets │ ├── Eventbrite.tsx │ ├── Tito.styled.ts │ └── Tito.tsx ├── Volunteer │ ├── VolunteerForm.tsx │ ├── VolunteerOpportunityDetail.styled.tsx │ ├── VolunteerOpportunityDetail.tsx │ └── VolunteerOpportunityList.tsx ├── Voting │ ├── Content.styled.tsx │ ├── Content.tsx │ ├── Elo.tsx │ ├── EloVote.styled.tsx │ ├── VoteConst.ts │ ├── Voting.styled.tsx │ ├── VotingFilters.styled.tsx │ ├── VotingFilters.tsx │ ├── landing.styled.tsx │ ├── sessionPanel.styled.tsx │ └── sessionPanel.tsx ├── actionButton.tsx ├── allAgendas.tsx ├── currentAgenda.tsx ├── eventDetailsSummary.tsx ├── global │ ├── Alert │ │ ├── Alert.styled.tsx │ │ └── Alert.tsx │ ├── Button │ │ ├── Button.styled.ts │ │ ├── Button.test.tsx │ │ └── Button.tsx │ ├── Container │ │ └── Container.styled.ts │ ├── Footer │ │ ├── Footer.styled.ts │ │ ├── footer.tsx │ │ └── socialLinks.tsx │ ├── Header │ │ ├── Header.styled.tsx │ │ ├── Header.tsx │ │ └── components │ │ │ ├── HeaderSocials.styled.tsx │ │ │ └── HeaderSocials.tsx │ ├── Icons │ │ ├── ArrowUp.tsx │ │ ├── DDDLogo.tsx │ │ ├── Email.tsx │ │ ├── Facebook.tsx │ │ ├── Flickr.tsx │ │ ├── GitHub.tsx │ │ ├── Instagram.tsx │ │ ├── Linkedin.tsx │ │ ├── Medium.tsx │ │ ├── Twitter.tsx │ │ └── Youtube.tsx │ ├── Nav │ │ ├── Nav.context.tsx │ │ ├── Nav.styled.tsx │ │ ├── Nav.tsx │ │ └── components │ │ │ ├── NavToggle.styled.tsx │ │ │ └── NavToggle.tsx │ ├── analytics.ts │ ├── meta.tsx │ ├── safeLink.tsx │ └── text.tsx ├── importantDates.tsx ├── responsiveVideo.tsx ├── sessionDetails.tsx ├── utils │ ├── arrayExtensions.ts │ ├── arrayShuffle.ts │ ├── arraySort.ts │ ├── dateTimeProvider.ts │ ├── getCommonServerSideProps.ts │ ├── mapSession.ts │ ├── storageKey.ts │ ├── styles │ │ ├── accessibility.ts │ │ ├── breakpoints.ts │ │ ├── calcRem.ts │ │ ├── conditionalStyles.ts │ │ ├── global.ts │ │ ├── reset.ts │ │ ├── theme.ts │ │ └── zindex.ts │ ├── useDeviceId.ts │ ├── useForm.ts │ ├── useSessionGroups.ts │ └── useSessions.ts ├── venueMap.module.css ├── venueMap.tsx ├── venueMapData.tsx └── voting.tsx ├── config ├── 2015.ts ├── 2016.ts ├── 2017.ts ├── 2018.ts ├── 2019.ts ├── 2021.ts ├── 2022.ts ├── 2023.ts ├── actions.ts ├── conference.ts ├── dates.ts ├── faqs.tsx ├── menu.ts ├── sponsors.ts ├── types.ts ├── venues │ ├── optus-stadium.tsx │ └── pcec.tsx ├── volunteerOpportunities.tsx └── workshops.tsx ├── cypress.json ├── cypress ├── .eslintrc ├── fixtures │ └── example.json ├── integration │ └── cfp.ts ├── plugins │ └── index.js ├── support │ ├── commands.ts │ └── index.ts └── tsconfig.json ├── deploy ├── iisnode.js └── web.config ├── jest.config.js ├── jsconfig.json ├── layouts ├── Layouts.styled.tsx ├── agendaWide.tsx ├── main.tsx ├── template.tsx └── withSidebar.tsx ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── about.tsx ├── agenda.tsx ├── agenda │ ├── 2015.tsx │ ├── 2016.tsx │ ├── 2017.tsx │ ├── 2018.tsx │ ├── 2019.tsx │ ├── 2020.tsx │ ├── 2021.tsx │ ├── 2022.tsx │ └── 2023.tsx ├── cfp.tsx ├── code-of-conduct.tsx ├── conference-day.tsx ├── conference-feedback.tsx ├── contact.tsx ├── faq.tsx ├── feedback.tsx ├── health-policy.tsx ├── index.tsx ├── privacy.tsx ├── sponsorship.tsx ├── tickets.tsx ├── venue.tsx ├── volunteer.tsx └── vote │ ├── elo.tsx │ ├── index.tsx │ ├── landing.tsx │ └── voting.tsx ├── public ├── hero │ ├── hero_w1024.jpg │ ├── hero_w1280.jpg │ ├── hero_w1920.jpg │ ├── hero_w640.jpg │ └── hero_w768.jpg ├── illustrations │ └── david_neal.png └── static │ ├── agenda │ ├── 2015.json │ ├── 2016.json │ ├── 2017.json │ ├── 2018.json │ ├── 2019.json │ └── 2021.json │ ├── docs │ ├── handbook2015.pdf │ ├── handbook2016.pdf │ ├── handbook2017.pdf │ ├── handbook2018.pdf │ ├── handbook2019.pdf │ ├── handbook2021.pdf │ ├── handbook2022.pdf │ └── handbook2023.pdf │ ├── favicon.ico │ ├── handbook2019.pdf │ ├── images │ ├── 2015.jpg │ ├── Rob-hi5.jpg │ ├── default-social-sharing-image.jpg │ ├── fader-back-3.jpg │ ├── fader-back.jpg │ ├── keynotes │ │ ├── david.jpg │ │ └── jennifer.jpg │ ├── logo-2018.png │ ├── logo-2018_.png │ ├── logo-2019.png │ ├── logo-2020.png │ ├── logo-2021.png │ ├── logo-2022-og.jpg │ ├── logo-dddbrisbane-2019.jpg │ ├── logo-dddbrisbane-new.png │ ├── logo-dddbrisbane.png │ ├── logo-dddmelbourne-2019.jpg │ ├── logo-dddmelbourne.jpg │ ├── logo-dddmelbourne.png │ ├── logo-dddsydney-2019.png │ ├── logo-dddsydney.png │ ├── logo-old.png │ ├── logo.png │ ├── map │ │ ├── 2022-floorplan-edited-tilt-logoclean.png │ │ ├── 2022-floorplan-rot20.png │ │ ├── map-sponsor-AWS.png │ │ ├── map-sponsor-Auth0.png │ │ ├── map-sponsor-Bankwest.png │ │ ├── map-sponsor-Bunnings.png │ │ ├── map-sponsor-GitHub.png │ │ ├── map-sponsor-Insight.png │ │ ├── map-sponsor-Keystart.png │ │ ├── map-sponsor-MOQDigital.png │ │ ├── map-sponsor-MakerX.png │ │ ├── map-sponsor-MantelGroup.png │ │ ├── map-sponsor-Microsoft.png │ │ ├── map-sponsor-Planit.png │ │ ├── map-sponsor-TelstraPurple.png │ │ ├── map-sponsor-Twilio.png │ │ ├── map-sponsor-VGW.png │ │ ├── map-sponsor-Valrose.png │ │ ├── map-sponsor-Versent.png │ │ └── white.png │ ├── profile-image-blank.jpg │ ├── sponsors │ │ ├── 2021-auth0.png │ │ ├── 2021-confluent.png │ │ ├── 2021-cybercx.png │ │ ├── 2021-elastic.png │ │ ├── 2021-family-zone.png │ │ ├── 2021-imdex.png │ │ ├── 2021-moqdigital.png │ │ ├── 2021-ndc.png │ │ ├── 2021-octopus.png │ │ ├── 2021-planit.png │ │ ├── 2021-progress-telerik.png │ │ ├── 2021-shecodes.png │ │ ├── 2021-twilio.png │ │ ├── 2021-valrose.png │ │ ├── 2021-vix.png │ │ ├── 2022-bunnings.png │ │ ├── 2022-sentient.png │ │ ├── 2023-atlassian.png │ │ ├── 2023-aws.png │ │ ├── 2023-bankwest.png │ │ ├── 2023-bcp.png │ │ ├── 2023-cognizant.png │ │ ├── 2023-equ.png │ │ ├── 2023-first-mode.png │ │ ├── 2023-github.png │ │ ├── 2023-insight.png │ │ ├── 2023-keystart-2.png │ │ ├── 2023-level-her-up.png │ │ ├── 2023-makerX.png │ │ ├── 2023-mantel-group.png │ │ ├── 2023-microsoft.png │ │ ├── 2023-planit.png │ │ ├── 2023-qoria.png │ │ ├── 2023-she-codes.png │ │ ├── 2023-telstra-purple.png │ │ ├── 2023-versent.png │ │ ├── 2023-vgw2.png │ │ ├── 2023-woodside.png │ │ ├── acs.jpg │ │ ├── amristar.png │ │ ├── aspose.png │ │ ├── bhp.png │ │ ├── codemaster-institute.png │ │ ├── elastic.jpg │ │ ├── gooroo.png │ │ ├── hudson.jpg │ │ ├── ibm.png │ │ ├── jetbrains.png │ │ ├── journeyone.png │ │ ├── lateral.png │ │ ├── livehire.png │ │ ├── magentys.png │ │ ├── mechanical-rock-2018.png │ │ ├── mechanical-rock.png │ │ ├── modis.png │ │ ├── ndc-sydney.png │ │ ├── octopus-deploy.png │ │ ├── ozcode.png │ │ ├── planit.png │ │ ├── planit_n.png │ │ ├── progress-telerik.png │ │ ├── psg.png │ │ ├── readify-kloud.png │ │ ├── readify.png │ │ ├── seq.png │ │ ├── thales.png │ │ ├── velrada.png │ │ ├── verse-group.jpg │ │ ├── wallabyjs.png │ │ ├── yow-perth.png │ │ └── yow.png │ ├── sprite.png │ ├── volunteer-banner_w1024.jpg │ ├── volunteer-banner_w1280.jpg │ ├── volunteer-banner_w1920.jpg │ ├── volunteer-banner_w640.jpg │ ├── volunteer-banner_w768.jpg │ └── voting-tito-ticket-number.jpg │ └── optus-parking.pdf ├── test └── test-util.tsx ├── tsconfig.json └── typings └── react-responsive-select.d.ts /.devops/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.devops/azure-pipelines.yml -------------------------------------------------------------------------------- /.devops/templates/makerx-build-nextjs-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.devops/templates/makerx-build-nextjs-app.yml -------------------------------------------------------------------------------- /.devops/templates/makerx-deploy-azure-webapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.devops/templates/makerx-deploy-azure-webapp.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.env.local -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.jpg binary 3 | -------------------------------------------------------------------------------- /.github/workflows/lhci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.github/workflows/lhci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | next.config.js -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /Context/Config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/Context/Config.tsx -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/README.md -------------------------------------------------------------------------------- /auditjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/auditjs.json -------------------------------------------------------------------------------- /components/2022agenda.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/2022agenda.tsx -------------------------------------------------------------------------------- /components/2023agenda.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/2023agenda.tsx -------------------------------------------------------------------------------- /components/ActionBar/ActionBar.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/ActionBar/ActionBar.styled.ts -------------------------------------------------------------------------------- /components/ActionBar/ActionBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/ActionBar/ActionBar.test.tsx -------------------------------------------------------------------------------- /components/ActionBar/ActionBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/ActionBar/ActionBar.tsx -------------------------------------------------------------------------------- /components/Agenda/Agenda.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Agenda/Agenda.styled.tsx -------------------------------------------------------------------------------- /components/Agenda/Agenda.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Agenda/Agenda.tsx -------------------------------------------------------------------------------- /components/Agenda/AgendaContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Agenda/AgendaContext.tsx -------------------------------------------------------------------------------- /components/Agenda/AgendaSession.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Agenda/AgendaSession.styled.tsx -------------------------------------------------------------------------------- /components/Agenda/AgendaSession.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Agenda/AgendaSession.tsx -------------------------------------------------------------------------------- /components/Agenda/AgendaTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Agenda/AgendaTime.tsx -------------------------------------------------------------------------------- /components/Agenda/Agendatime.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Agenda/Agendatime.styled.tsx -------------------------------------------------------------------------------- /components/Agenda/SessionDetails.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Agenda/SessionDetails.styled.tsx -------------------------------------------------------------------------------- /components/Agenda/SessionDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Agenda/SessionDetails.tsx -------------------------------------------------------------------------------- /components/Agenda/layout.ts: -------------------------------------------------------------------------------- 1 | export const tableLayoutBreakpointFrom = 'lg' 2 | -------------------------------------------------------------------------------- /components/Badge/Badge.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Badge/Badge.styled.tsx -------------------------------------------------------------------------------- /components/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Badge/Badge.tsx -------------------------------------------------------------------------------- /components/FAQList/FaqDetail.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/FAQList/FaqDetail.styled.ts -------------------------------------------------------------------------------- /components/FAQList/FaqDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/FAQList/FaqDetail.tsx -------------------------------------------------------------------------------- /components/FAQList/FaqList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/FAQList/FaqList.tsx -------------------------------------------------------------------------------- /components/Feedback/Feedback.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Feedback/Feedback.styled.tsx -------------------------------------------------------------------------------- /components/Feedback/FeedbackFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Feedback/FeedbackFetch.ts -------------------------------------------------------------------------------- /components/Feedback/FeedbackTimeTesting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Feedback/FeedbackTimeTesting.tsx -------------------------------------------------------------------------------- /components/Feedback/FormReducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Feedback/FormReducers.ts -------------------------------------------------------------------------------- /components/Feedback/SessionInput.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Feedback/SessionInput.styled.tsx -------------------------------------------------------------------------------- /components/Feedback/SessionInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Feedback/SessionInput.tsx -------------------------------------------------------------------------------- /components/Hero/Hero.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Hero/Hero.styled.tsx -------------------------------------------------------------------------------- /components/Hero/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Hero/hero.tsx -------------------------------------------------------------------------------- /components/ImportantDatesList/ImportantDate.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/ImportantDatesList/ImportantDate.styled.ts -------------------------------------------------------------------------------- /components/ImportantDatesList/ImportantDateTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/ImportantDatesList/ImportantDateTile.tsx -------------------------------------------------------------------------------- /components/ImportantDatesList/ImportantDateTileInline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/ImportantDatesList/ImportantDateTileInline.tsx -------------------------------------------------------------------------------- /components/ImportantDatesList/importantDatesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/ImportantDatesList/importantDatesList.tsx -------------------------------------------------------------------------------- /components/Keynotes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Keynotes.tsx -------------------------------------------------------------------------------- /components/PageBanner/PageBanner.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/PageBanner/PageBanner.styled.tsx -------------------------------------------------------------------------------- /components/PageBanner/PageBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/PageBanner/PageBanner.tsx -------------------------------------------------------------------------------- /components/SkipToContent/SkipToContent.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/SkipToContent/SkipToContent.styled.tsx -------------------------------------------------------------------------------- /components/SkipToContent/SkipToContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/SkipToContent/SkipToContent.tsx -------------------------------------------------------------------------------- /components/Sponsors/Sponsors.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Sponsors/Sponsors.styled.tsx -------------------------------------------------------------------------------- /components/Sponsors/sponsors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Sponsors/sponsors.tsx -------------------------------------------------------------------------------- /components/TestingControl/TestingControl.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/TestingControl/TestingControl.styled.ts -------------------------------------------------------------------------------- /components/TestingControl/TestingControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/TestingControl/TestingControl.tsx -------------------------------------------------------------------------------- /components/TestingControl/TestingControlConsts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/TestingControl/TestingControlConsts.ts -------------------------------------------------------------------------------- /components/TestingControl/TestingControlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/TestingControl/TestingControlUtils.ts -------------------------------------------------------------------------------- /components/Tickets/Eventbrite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Tickets/Eventbrite.tsx -------------------------------------------------------------------------------- /components/Tickets/Tito.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Tickets/Tito.styled.ts -------------------------------------------------------------------------------- /components/Tickets/Tito.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Tickets/Tito.tsx -------------------------------------------------------------------------------- /components/Volunteer/VolunteerForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Volunteer/VolunteerForm.tsx -------------------------------------------------------------------------------- /components/Volunteer/VolunteerOpportunityDetail.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Volunteer/VolunteerOpportunityDetail.styled.tsx -------------------------------------------------------------------------------- /components/Volunteer/VolunteerOpportunityDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Volunteer/VolunteerOpportunityDetail.tsx -------------------------------------------------------------------------------- /components/Volunteer/VolunteerOpportunityList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Volunteer/VolunteerOpportunityList.tsx -------------------------------------------------------------------------------- /components/Voting/Content.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Voting/Content.styled.tsx -------------------------------------------------------------------------------- /components/Voting/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Voting/Content.tsx -------------------------------------------------------------------------------- /components/Voting/Elo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Voting/Elo.tsx -------------------------------------------------------------------------------- /components/Voting/EloVote.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Voting/EloVote.styled.tsx -------------------------------------------------------------------------------- /components/Voting/VoteConst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Voting/VoteConst.ts -------------------------------------------------------------------------------- /components/Voting/Voting.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Voting/Voting.styled.tsx -------------------------------------------------------------------------------- /components/Voting/VotingFilters.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Voting/VotingFilters.styled.tsx -------------------------------------------------------------------------------- /components/Voting/VotingFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Voting/VotingFilters.tsx -------------------------------------------------------------------------------- /components/Voting/landing.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Voting/landing.styled.tsx -------------------------------------------------------------------------------- /components/Voting/sessionPanel.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Voting/sessionPanel.styled.tsx -------------------------------------------------------------------------------- /components/Voting/sessionPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/Voting/sessionPanel.tsx -------------------------------------------------------------------------------- /components/actionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/actionButton.tsx -------------------------------------------------------------------------------- /components/allAgendas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/allAgendas.tsx -------------------------------------------------------------------------------- /components/currentAgenda.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/currentAgenda.tsx -------------------------------------------------------------------------------- /components/eventDetailsSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/eventDetailsSummary.tsx -------------------------------------------------------------------------------- /components/global/Alert/Alert.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Alert/Alert.styled.tsx -------------------------------------------------------------------------------- /components/global/Alert/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Alert/Alert.tsx -------------------------------------------------------------------------------- /components/global/Button/Button.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Button/Button.styled.ts -------------------------------------------------------------------------------- /components/global/Button/Button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Button/Button.test.tsx -------------------------------------------------------------------------------- /components/global/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Button/Button.tsx -------------------------------------------------------------------------------- /components/global/Container/Container.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Container/Container.styled.ts -------------------------------------------------------------------------------- /components/global/Footer/Footer.styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Footer/Footer.styled.ts -------------------------------------------------------------------------------- /components/global/Footer/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Footer/footer.tsx -------------------------------------------------------------------------------- /components/global/Footer/socialLinks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Footer/socialLinks.tsx -------------------------------------------------------------------------------- /components/global/Header/Header.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Header/Header.styled.tsx -------------------------------------------------------------------------------- /components/global/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Header/Header.tsx -------------------------------------------------------------------------------- /components/global/Header/components/HeaderSocials.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Header/components/HeaderSocials.styled.tsx -------------------------------------------------------------------------------- /components/global/Header/components/HeaderSocials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Header/components/HeaderSocials.tsx -------------------------------------------------------------------------------- /components/global/Icons/ArrowUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Icons/ArrowUp.tsx -------------------------------------------------------------------------------- /components/global/Icons/DDDLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Icons/DDDLogo.tsx -------------------------------------------------------------------------------- /components/global/Icons/Email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Icons/Email.tsx -------------------------------------------------------------------------------- /components/global/Icons/Facebook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Icons/Facebook.tsx -------------------------------------------------------------------------------- /components/global/Icons/Flickr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Icons/Flickr.tsx -------------------------------------------------------------------------------- /components/global/Icons/GitHub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Icons/GitHub.tsx -------------------------------------------------------------------------------- /components/global/Icons/Instagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Icons/Instagram.tsx -------------------------------------------------------------------------------- /components/global/Icons/Linkedin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Icons/Linkedin.tsx -------------------------------------------------------------------------------- /components/global/Icons/Medium.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Icons/Medium.tsx -------------------------------------------------------------------------------- /components/global/Icons/Twitter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Icons/Twitter.tsx -------------------------------------------------------------------------------- /components/global/Icons/Youtube.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Icons/Youtube.tsx -------------------------------------------------------------------------------- /components/global/Nav/Nav.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Nav/Nav.context.tsx -------------------------------------------------------------------------------- /components/global/Nav/Nav.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Nav/Nav.styled.tsx -------------------------------------------------------------------------------- /components/global/Nav/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Nav/Nav.tsx -------------------------------------------------------------------------------- /components/global/Nav/components/NavToggle.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Nav/components/NavToggle.styled.tsx -------------------------------------------------------------------------------- /components/global/Nav/components/NavToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/Nav/components/NavToggle.tsx -------------------------------------------------------------------------------- /components/global/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/analytics.ts -------------------------------------------------------------------------------- /components/global/meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/meta.tsx -------------------------------------------------------------------------------- /components/global/safeLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/safeLink.tsx -------------------------------------------------------------------------------- /components/global/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/global/text.tsx -------------------------------------------------------------------------------- /components/importantDates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/importantDates.tsx -------------------------------------------------------------------------------- /components/responsiveVideo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/responsiveVideo.tsx -------------------------------------------------------------------------------- /components/sessionDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/sessionDetails.tsx -------------------------------------------------------------------------------- /components/utils/arrayExtensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/arrayExtensions.ts -------------------------------------------------------------------------------- /components/utils/arrayShuffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/arrayShuffle.ts -------------------------------------------------------------------------------- /components/utils/arraySort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/arraySort.ts -------------------------------------------------------------------------------- /components/utils/dateTimeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/dateTimeProvider.ts -------------------------------------------------------------------------------- /components/utils/getCommonServerSideProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/getCommonServerSideProps.ts -------------------------------------------------------------------------------- /components/utils/mapSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/mapSession.ts -------------------------------------------------------------------------------- /components/utils/storageKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/storageKey.ts -------------------------------------------------------------------------------- /components/utils/styles/accessibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/styles/accessibility.ts -------------------------------------------------------------------------------- /components/utils/styles/breakpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/styles/breakpoints.ts -------------------------------------------------------------------------------- /components/utils/styles/calcRem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/styles/calcRem.ts -------------------------------------------------------------------------------- /components/utils/styles/conditionalStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/styles/conditionalStyles.ts -------------------------------------------------------------------------------- /components/utils/styles/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/styles/global.ts -------------------------------------------------------------------------------- /components/utils/styles/reset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/styles/reset.ts -------------------------------------------------------------------------------- /components/utils/styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/styles/theme.ts -------------------------------------------------------------------------------- /components/utils/styles/zindex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/styles/zindex.ts -------------------------------------------------------------------------------- /components/utils/useDeviceId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/useDeviceId.ts -------------------------------------------------------------------------------- /components/utils/useForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/useForm.ts -------------------------------------------------------------------------------- /components/utils/useSessionGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/useSessionGroups.ts -------------------------------------------------------------------------------- /components/utils/useSessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/utils/useSessions.ts -------------------------------------------------------------------------------- /components/venueMap.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/venueMap.module.css -------------------------------------------------------------------------------- /components/venueMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/venueMap.tsx -------------------------------------------------------------------------------- /components/venueMapData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/venueMapData.tsx -------------------------------------------------------------------------------- /components/voting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/components/voting.tsx -------------------------------------------------------------------------------- /config/2015.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/2015.ts -------------------------------------------------------------------------------- /config/2016.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/2016.ts -------------------------------------------------------------------------------- /config/2017.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/2017.ts -------------------------------------------------------------------------------- /config/2018.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/2018.ts -------------------------------------------------------------------------------- /config/2019.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/2019.ts -------------------------------------------------------------------------------- /config/2021.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/2021.ts -------------------------------------------------------------------------------- /config/2022.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/2022.ts -------------------------------------------------------------------------------- /config/2023.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/2023.ts -------------------------------------------------------------------------------- /config/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/actions.ts -------------------------------------------------------------------------------- /config/conference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/conference.ts -------------------------------------------------------------------------------- /config/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/dates.ts -------------------------------------------------------------------------------- /config/faqs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/faqs.tsx -------------------------------------------------------------------------------- /config/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/menu.ts -------------------------------------------------------------------------------- /config/sponsors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/sponsors.ts -------------------------------------------------------------------------------- /config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/types.ts -------------------------------------------------------------------------------- /config/venues/optus-stadium.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/venues/optus-stadium.tsx -------------------------------------------------------------------------------- /config/venues/pcec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/venues/pcec.tsx -------------------------------------------------------------------------------- /config/volunteerOpportunities.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/volunteerOpportunities.tsx -------------------------------------------------------------------------------- /config/workshops.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/config/workshops.tsx -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/cypress/.eslintrc -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/integration/cfp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/cypress/integration/cfp.ts -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/cypress/support/index.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /deploy/iisnode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/deploy/iisnode.js -------------------------------------------------------------------------------- /deploy/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/deploy/web.config -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/jsconfig.json -------------------------------------------------------------------------------- /layouts/Layouts.styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/layouts/Layouts.styled.tsx -------------------------------------------------------------------------------- /layouts/agendaWide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/layouts/agendaWide.tsx -------------------------------------------------------------------------------- /layouts/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/layouts/main.tsx -------------------------------------------------------------------------------- /layouts/template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/layouts/template.tsx -------------------------------------------------------------------------------- /layouts/withSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/layouts/withSidebar.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/about.tsx -------------------------------------------------------------------------------- /pages/agenda.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/agenda.tsx -------------------------------------------------------------------------------- /pages/agenda/2015.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/agenda/2015.tsx -------------------------------------------------------------------------------- /pages/agenda/2016.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/agenda/2016.tsx -------------------------------------------------------------------------------- /pages/agenda/2017.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/agenda/2017.tsx -------------------------------------------------------------------------------- /pages/agenda/2018.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/agenda/2018.tsx -------------------------------------------------------------------------------- /pages/agenda/2019.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/agenda/2019.tsx -------------------------------------------------------------------------------- /pages/agenda/2020.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/agenda/2020.tsx -------------------------------------------------------------------------------- /pages/agenda/2021.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/agenda/2021.tsx -------------------------------------------------------------------------------- /pages/agenda/2022.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/agenda/2022.tsx -------------------------------------------------------------------------------- /pages/agenda/2023.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/agenda/2023.tsx -------------------------------------------------------------------------------- /pages/cfp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/cfp.tsx -------------------------------------------------------------------------------- /pages/code-of-conduct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/code-of-conduct.tsx -------------------------------------------------------------------------------- /pages/conference-day.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/conference-day.tsx -------------------------------------------------------------------------------- /pages/conference-feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/conference-feedback.tsx -------------------------------------------------------------------------------- /pages/contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/contact.tsx -------------------------------------------------------------------------------- /pages/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/faq.tsx -------------------------------------------------------------------------------- /pages/feedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/feedback.tsx -------------------------------------------------------------------------------- /pages/health-policy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/health-policy.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/privacy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/privacy.tsx -------------------------------------------------------------------------------- /pages/sponsorship.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/sponsorship.tsx -------------------------------------------------------------------------------- /pages/tickets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/tickets.tsx -------------------------------------------------------------------------------- /pages/venue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/venue.tsx -------------------------------------------------------------------------------- /pages/volunteer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/volunteer.tsx -------------------------------------------------------------------------------- /pages/vote/elo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/vote/elo.tsx -------------------------------------------------------------------------------- /pages/vote/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/vote/index.tsx -------------------------------------------------------------------------------- /pages/vote/landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/vote/landing.tsx -------------------------------------------------------------------------------- /pages/vote/voting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/pages/vote/voting.tsx -------------------------------------------------------------------------------- /public/hero/hero_w1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/hero/hero_w1024.jpg -------------------------------------------------------------------------------- /public/hero/hero_w1280.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/hero/hero_w1280.jpg -------------------------------------------------------------------------------- /public/hero/hero_w1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/hero/hero_w1920.jpg -------------------------------------------------------------------------------- /public/hero/hero_w640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/hero/hero_w640.jpg -------------------------------------------------------------------------------- /public/hero/hero_w768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/hero/hero_w768.jpg -------------------------------------------------------------------------------- /public/illustrations/david_neal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/illustrations/david_neal.png -------------------------------------------------------------------------------- /public/static/agenda/2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/agenda/2015.json -------------------------------------------------------------------------------- /public/static/agenda/2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/agenda/2016.json -------------------------------------------------------------------------------- /public/static/agenda/2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/agenda/2017.json -------------------------------------------------------------------------------- /public/static/agenda/2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/agenda/2018.json -------------------------------------------------------------------------------- /public/static/agenda/2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/agenda/2019.json -------------------------------------------------------------------------------- /public/static/agenda/2021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/agenda/2021.json -------------------------------------------------------------------------------- /public/static/docs/handbook2015.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/docs/handbook2015.pdf -------------------------------------------------------------------------------- /public/static/docs/handbook2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/docs/handbook2016.pdf -------------------------------------------------------------------------------- /public/static/docs/handbook2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/docs/handbook2017.pdf -------------------------------------------------------------------------------- /public/static/docs/handbook2018.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/docs/handbook2018.pdf -------------------------------------------------------------------------------- /public/static/docs/handbook2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/docs/handbook2019.pdf -------------------------------------------------------------------------------- /public/static/docs/handbook2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/docs/handbook2021.pdf -------------------------------------------------------------------------------- /public/static/docs/handbook2022.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/docs/handbook2022.pdf -------------------------------------------------------------------------------- /public/static/docs/handbook2023.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/docs/handbook2023.pdf -------------------------------------------------------------------------------- /public/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/favicon.ico -------------------------------------------------------------------------------- /public/static/handbook2019.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/handbook2019.pdf -------------------------------------------------------------------------------- /public/static/images/2015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/2015.jpg -------------------------------------------------------------------------------- /public/static/images/Rob-hi5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/Rob-hi5.jpg -------------------------------------------------------------------------------- /public/static/images/default-social-sharing-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/default-social-sharing-image.jpg -------------------------------------------------------------------------------- /public/static/images/fader-back-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/fader-back-3.jpg -------------------------------------------------------------------------------- /public/static/images/fader-back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/fader-back.jpg -------------------------------------------------------------------------------- /public/static/images/keynotes/david.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/keynotes/david.jpg -------------------------------------------------------------------------------- /public/static/images/keynotes/jennifer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/keynotes/jennifer.jpg -------------------------------------------------------------------------------- /public/static/images/logo-2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-2018.png -------------------------------------------------------------------------------- /public/static/images/logo-2018_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-2018_.png -------------------------------------------------------------------------------- /public/static/images/logo-2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-2019.png -------------------------------------------------------------------------------- /public/static/images/logo-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-2020.png -------------------------------------------------------------------------------- /public/static/images/logo-2021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-2021.png -------------------------------------------------------------------------------- /public/static/images/logo-2022-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-2022-og.jpg -------------------------------------------------------------------------------- /public/static/images/logo-dddbrisbane-2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-dddbrisbane-2019.jpg -------------------------------------------------------------------------------- /public/static/images/logo-dddbrisbane-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-dddbrisbane-new.png -------------------------------------------------------------------------------- /public/static/images/logo-dddbrisbane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-dddbrisbane.png -------------------------------------------------------------------------------- /public/static/images/logo-dddmelbourne-2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-dddmelbourne-2019.jpg -------------------------------------------------------------------------------- /public/static/images/logo-dddmelbourne.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-dddmelbourne.jpg -------------------------------------------------------------------------------- /public/static/images/logo-dddmelbourne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-dddmelbourne.png -------------------------------------------------------------------------------- /public/static/images/logo-dddsydney-2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-dddsydney-2019.png -------------------------------------------------------------------------------- /public/static/images/logo-dddsydney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-dddsydney.png -------------------------------------------------------------------------------- /public/static/images/logo-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo-old.png -------------------------------------------------------------------------------- /public/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/logo.png -------------------------------------------------------------------------------- /public/static/images/map/2022-floorplan-edited-tilt-logoclean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/2022-floorplan-edited-tilt-logoclean.png -------------------------------------------------------------------------------- /public/static/images/map/2022-floorplan-rot20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/2022-floorplan-rot20.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-AWS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-AWS.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-Auth0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-Auth0.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-Bankwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-Bankwest.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-Bunnings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-Bunnings.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-GitHub.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-Insight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-Insight.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-Keystart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-Keystart.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-MOQDigital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-MOQDigital.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-MakerX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-MakerX.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-MantelGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-MantelGroup.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-Microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-Microsoft.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-Planit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-Planit.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-TelstraPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-TelstraPurple.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-Twilio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-Twilio.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-VGW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-VGW.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-Valrose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-Valrose.png -------------------------------------------------------------------------------- /public/static/images/map/map-sponsor-Versent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/map-sponsor-Versent.png -------------------------------------------------------------------------------- /public/static/images/map/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/map/white.png -------------------------------------------------------------------------------- /public/static/images/profile-image-blank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/profile-image-blank.jpg -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-auth0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-auth0.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-confluent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-confluent.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-cybercx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-cybercx.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-elastic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-elastic.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-family-zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-family-zone.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-imdex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-imdex.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-moqdigital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-moqdigital.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-ndc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-ndc.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-octopus.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-planit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-planit.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-progress-telerik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-progress-telerik.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-shecodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-shecodes.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-twilio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-twilio.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-valrose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-valrose.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2021-vix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2021-vix.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2022-bunnings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2022-bunnings.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2022-sentient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2022-sentient.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-atlassian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-atlassian.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-aws.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-bankwest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-bankwest.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-bcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-bcp.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-cognizant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-cognizant.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-equ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-equ.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-first-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-first-mode.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-github.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-insight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-insight.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-keystart-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-keystart-2.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-level-her-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-level-her-up.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-makerX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-makerX.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-mantel-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-mantel-group.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-microsoft.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-planit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-planit.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-qoria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-qoria.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-she-codes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-she-codes.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-telstra-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-telstra-purple.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-versent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-versent.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-vgw2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-vgw2.png -------------------------------------------------------------------------------- /public/static/images/sponsors/2023-woodside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/2023-woodside.png -------------------------------------------------------------------------------- /public/static/images/sponsors/acs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/acs.jpg -------------------------------------------------------------------------------- /public/static/images/sponsors/amristar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/amristar.png -------------------------------------------------------------------------------- /public/static/images/sponsors/aspose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/aspose.png -------------------------------------------------------------------------------- /public/static/images/sponsors/bhp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/bhp.png -------------------------------------------------------------------------------- /public/static/images/sponsors/codemaster-institute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/codemaster-institute.png -------------------------------------------------------------------------------- /public/static/images/sponsors/elastic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/elastic.jpg -------------------------------------------------------------------------------- /public/static/images/sponsors/gooroo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/gooroo.png -------------------------------------------------------------------------------- /public/static/images/sponsors/hudson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/hudson.jpg -------------------------------------------------------------------------------- /public/static/images/sponsors/ibm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/ibm.png -------------------------------------------------------------------------------- /public/static/images/sponsors/jetbrains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/jetbrains.png -------------------------------------------------------------------------------- /public/static/images/sponsors/journeyone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/journeyone.png -------------------------------------------------------------------------------- /public/static/images/sponsors/lateral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/lateral.png -------------------------------------------------------------------------------- /public/static/images/sponsors/livehire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/livehire.png -------------------------------------------------------------------------------- /public/static/images/sponsors/magentys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/magentys.png -------------------------------------------------------------------------------- /public/static/images/sponsors/mechanical-rock-2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/mechanical-rock-2018.png -------------------------------------------------------------------------------- /public/static/images/sponsors/mechanical-rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/mechanical-rock.png -------------------------------------------------------------------------------- /public/static/images/sponsors/modis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/modis.png -------------------------------------------------------------------------------- /public/static/images/sponsors/ndc-sydney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/ndc-sydney.png -------------------------------------------------------------------------------- /public/static/images/sponsors/octopus-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/octopus-deploy.png -------------------------------------------------------------------------------- /public/static/images/sponsors/ozcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/ozcode.png -------------------------------------------------------------------------------- /public/static/images/sponsors/planit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/planit.png -------------------------------------------------------------------------------- /public/static/images/sponsors/planit_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/planit_n.png -------------------------------------------------------------------------------- /public/static/images/sponsors/progress-telerik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/progress-telerik.png -------------------------------------------------------------------------------- /public/static/images/sponsors/psg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/psg.png -------------------------------------------------------------------------------- /public/static/images/sponsors/readify-kloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/readify-kloud.png -------------------------------------------------------------------------------- /public/static/images/sponsors/readify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/readify.png -------------------------------------------------------------------------------- /public/static/images/sponsors/seq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/seq.png -------------------------------------------------------------------------------- /public/static/images/sponsors/thales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/thales.png -------------------------------------------------------------------------------- /public/static/images/sponsors/velrada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/velrada.png -------------------------------------------------------------------------------- /public/static/images/sponsors/verse-group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/verse-group.jpg -------------------------------------------------------------------------------- /public/static/images/sponsors/wallabyjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/wallabyjs.png -------------------------------------------------------------------------------- /public/static/images/sponsors/yow-perth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/yow-perth.png -------------------------------------------------------------------------------- /public/static/images/sponsors/yow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sponsors/yow.png -------------------------------------------------------------------------------- /public/static/images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/sprite.png -------------------------------------------------------------------------------- /public/static/images/volunteer-banner_w1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/volunteer-banner_w1024.jpg -------------------------------------------------------------------------------- /public/static/images/volunteer-banner_w1280.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/volunteer-banner_w1280.jpg -------------------------------------------------------------------------------- /public/static/images/volunteer-banner_w1920.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/volunteer-banner_w1920.jpg -------------------------------------------------------------------------------- /public/static/images/volunteer-banner_w640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/volunteer-banner_w640.jpg -------------------------------------------------------------------------------- /public/static/images/volunteer-banner_w768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/volunteer-banner_w768.jpg -------------------------------------------------------------------------------- /public/static/images/voting-tito-ticket-number.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/images/voting-tito-ticket-number.jpg -------------------------------------------------------------------------------- /public/static/optus-parking.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/public/static/optus-parking.pdf -------------------------------------------------------------------------------- /test/test-util.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/test/test-util.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/react-responsive-select.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dddwa/dddperth-website/HEAD/typings/react-responsive-select.d.ts --------------------------------------------------------------------------------