├── .editorconfig ├── .firebaserc ├── .gitignore ├── .idea ├── .gitignore ├── feconf2020.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── email └── pre-registration.html ├── firebase.json ├── functions ├── package.json ├── src │ └── index.ts └── tsconfig.json ├── next-env.d.ts ├── next.config.js ├── package.json ├── public ├── favicon │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ └── favicon.ico ├── fonts │ └── gilroy │ │ ├── Gilroy-ExtraBold.woff │ │ └── Gilroy-Light.woff ├── images │ ├── backgrounds │ │ ├── img-gradient-1.png │ │ ├── img-gradient-10.png │ │ ├── img-gradient-2.png │ │ ├── img-gradient-3.png │ │ ├── img-gradient-4.png │ │ ├── img-gradient-5.png │ │ ├── img-gradient-6.png │ │ ├── img-gradient-7.png │ │ ├── img-gradient-8.png │ │ └── img-gradient-9.png │ ├── emails │ │ ├── icon_email.png │ │ ├── icon_facebook.png │ │ ├── icon_youtube_medium.png │ │ ├── img_hero.png │ │ └── logo_white.png │ ├── icons │ │ ├── arrow-right@2x.png │ │ ├── email@2x.png │ │ ├── facebook@2x.png │ │ ├── github@2x.png │ │ ├── live@2x.png │ │ ├── youtube.png │ │ └── youtube@2x.png │ ├── og-image.png │ ├── og-image1.jpg │ ├── speakers │ │ ├── 김성현.png │ │ ├── 김혜성.png │ │ ├── 나윤환.png │ │ ├── 심흥운.png │ │ ├── 원지혁.png │ │ ├── 이경주.png │ │ ├── 이성원.png │ │ ├── 이정헌.png │ │ ├── 이한.png │ │ ├── 이현섭.png │ │ ├── 최수형.png │ │ ├── 최종택.png │ │ └── 최태건.png │ └── sponsors │ │ ├── banksalad@2x.png │ │ ├── buzzvil@2x.png │ │ ├── carrot@2x.png │ │ ├── class-101@2x.png │ │ ├── coupang@2x.png │ │ ├── ejn@2x.png │ │ ├── jetbrains@2x.png │ │ ├── kakao@2x.png │ │ ├── marpple@2x.png │ │ ├── meshkorea@2x.png │ │ ├── naver@2x.png │ │ ├── nc@2x.png │ │ ├── peoplefund@2x.png │ │ ├── programmers@2x.png │ │ ├── robert@2x.png │ │ ├── sendbird@2x.png │ │ ├── soomgo@2x.png │ │ ├── toss@2x.png │ │ ├── wooahan-tech@2x.png │ │ ├── woowahan@2x.png │ │ └── yanolja@2x.png └── manifest.json ├── src ├── constants │ ├── page.ts │ └── types.ts ├── motions │ ├── about.motion.ts │ ├── callforspeaker.motion.ts │ ├── callforsponsor.motion.ts │ ├── coc.motion.ts │ ├── header.motion.ts │ ├── hero.motion.ts │ ├── notice.motion.ts │ ├── pre-registration.motion.ts │ ├── presets.motion.ts │ ├── register.motion.ts │ ├── sessions.motions.ts │ ├── speakerList.motion.ts │ └── sponsor.motions.ts ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── index.ts │ └── sessions.ts ├── resources │ └── data.ts ├── store │ ├── firebase.ts │ ├── index.ts │ ├── interfaces.ts │ ├── rootReducer.ts │ └── slices │ │ ├── appSlice.ts │ │ ├── sessionSlice.ts │ │ ├── stickySlice.ts │ │ └── supportSlice.ts ├── styles │ ├── _font.scss │ ├── _global.scss │ ├── _keyframes.scss │ ├── _mixin.scss │ ├── _variables.scss │ └── main.scss ├── utils │ ├── hooks │ │ ├── use-dynamic-render.ts │ │ ├── use-firebase.ts │ │ ├── use-intersection.ts │ │ ├── use-liveState.ts │ │ ├── use-modal.ts │ │ ├── use-parallel.ts │ │ └── use-window.ts │ └── suffle.ts └── views │ ├── components │ ├── AboutSection │ │ ├── AboutSection.module.scss │ │ └── AboutSection.tsx │ ├── AwesomeCircle │ │ ├── AwesomeCircle.module.scss │ │ └── AwesomeCircle.tsx │ ├── CallForSpeakerSection │ │ ├── CallForSpeakerSection.module.scss │ │ └── CallForSpeakerSection.tsx │ ├── CallForSponsorSection │ │ ├── CallForSponsorSection.module.scss │ │ └── CallForSponsorSection.tsx │ ├── CloseButton │ │ ├── CloseButton.module.scss │ │ └── CloseButton.tsx │ ├── CoCModal │ │ ├── CoCModal.module.scss │ │ └── CoCModal.tsx │ ├── DashedCircle │ │ ├── DashedCircle.module.scss │ │ └── DashedCircle.tsx │ ├── Empty │ │ ├── Empty.module.scss │ │ └── Empty.tsx │ ├── Footer │ │ ├── Footer.module.scss │ │ └── Footer.tsx │ ├── GitHubUserMessageForm │ │ ├── GitHubUserMessageForm.module.scss │ │ └── GitHubUserMessageForm.tsx │ ├── Header │ │ ├── Header.module.scss │ │ └── Header.tsx │ ├── HeroSection │ │ ├── HeroSection.module.scss │ │ └── HeroSection.tsx │ ├── MenuModal │ │ ├── MenuModal.module.scss │ │ └── MenuModal.tsx │ ├── MobileSpeakerList │ │ ├── MobileSpeakerList.module.scss │ │ └── MobileSpeakerList.tsx │ ├── ModalContainer │ │ ├── ModalContainer.module.scss │ │ └── ModalContainer.tsx │ ├── MotionNumber │ │ └── MotionNumber.tsx │ ├── NoticeSection │ │ ├── NoticeSection.module.scss │ │ └── NoticeSection.tsx │ ├── PlatformList │ │ ├── PlatformList.module.scss │ │ └── PlatformList.tsx │ ├── Portal │ │ ├── Portal.module.scss │ │ └── Portal.tsx │ ├── PreRegistrationSection │ │ ├── PreRegistrationSection.module.scss │ │ ├── PreRegistrationSection.tsx │ │ └── components │ │ │ └── Message │ │ │ ├── Message.module.scss │ │ │ └── Message.tsx │ ├── PrivateInfoConfirmation │ │ ├── PrivateInfoConfirmation.module.scss │ │ └── PrivateInfoConfirmation.tsx │ ├── RegisterButton │ │ ├── RegisterButton.module.scss │ │ └── RegisterButton.tsx │ ├── RegisterSection │ │ ├── RegisterSection.module.scss │ │ └── RegisterSection.tsx │ ├── RegisterSupportButton │ │ └── RegisterSupportButton.tsx │ ├── SafeLink │ │ └── SafeLink.tsx │ ├── SessionDetailModal │ │ ├── SessionDetailModal.module.scss │ │ └── SessionDetailModal.tsx │ ├── SessionListSection │ │ ├── SessionListSection.module.scss │ │ └── SessionListSection.tsx │ ├── SessionView │ │ ├── SessionView.module.scss │ │ └── SessionView.tsx │ ├── SpeakerCardView │ │ ├── SpeakerCardView.module.scss │ │ └── SpeakerCardView.tsx │ ├── SpeakerListSection │ │ ├── SpeakerListSection.module.scss │ │ └── SpeakerListSection.tsx │ ├── SponsorGradeContainer │ │ ├── SponsorGradeContainer.module.scss │ │ └── SponsorGradeContainer.tsx │ ├── SponsorList │ │ ├── SponsorList.module.scss │ │ └── SponsorList.tsx │ ├── SponsorSection │ │ ├── SponsorSection.module.scss │ │ └── SponsorSection.tsx │ ├── Support │ │ ├── Support.module.scss │ │ └── Support.tsx │ ├── SupportFormModal │ │ ├── SupportFormModal.module.scss │ │ └── SupportFormModal.tsx │ └── YoutubeButton │ │ ├── YoutubeButton.module.scss │ │ └── YoutubeButton.tsx │ ├── page-components │ ├── HomePage │ │ ├── HomePage.module.scss │ │ └── HomePage.tsx │ └── SessionPage │ │ ├── SessionPage.module.scss │ │ └── SessionPage.tsx │ └── svg-components │ ├── ArrowDownIcon │ └── ArrowDownIcon.tsx │ ├── HeaderLogo │ └── HeaderLogo.tsx │ ├── LineBackground │ ├── AirPlanePath.module.scss │ ├── AirPlanePath.tsx │ ├── LineBackground.module.scss │ ├── LineBackground.tsx │ ├── LinePath.module.scss │ ├── mobile │ │ └── LinePathMobile.tsx │ └── pc │ │ └── LinePathPC.tsx │ ├── MainLogo │ ├── MainLogo.module.scss │ ├── MainLogo.tsx │ └── _MainLogo.tsx │ └── Spinner │ └── Spinner.tsx └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/.editorconfig -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/feconf2020.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/.idea/feconf2020.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/LICENSE -------------------------------------------------------------------------------- /email/pre-registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/email/pre-registration.html -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/functions/src/index.ts -------------------------------------------------------------------------------- /functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/functions/tsconfig.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /public/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /public/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /public/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/apple-icon.png -------------------------------------------------------------------------------- /public/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/favicon/favicon.ico -------------------------------------------------------------------------------- /public/fonts/gilroy/Gilroy-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/fonts/gilroy/Gilroy-ExtraBold.woff -------------------------------------------------------------------------------- /public/fonts/gilroy/Gilroy-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/fonts/gilroy/Gilroy-Light.woff -------------------------------------------------------------------------------- /public/images/backgrounds/img-gradient-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/backgrounds/img-gradient-1.png -------------------------------------------------------------------------------- /public/images/backgrounds/img-gradient-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/backgrounds/img-gradient-10.png -------------------------------------------------------------------------------- /public/images/backgrounds/img-gradient-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/backgrounds/img-gradient-2.png -------------------------------------------------------------------------------- /public/images/backgrounds/img-gradient-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/backgrounds/img-gradient-3.png -------------------------------------------------------------------------------- /public/images/backgrounds/img-gradient-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/backgrounds/img-gradient-4.png -------------------------------------------------------------------------------- /public/images/backgrounds/img-gradient-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/backgrounds/img-gradient-5.png -------------------------------------------------------------------------------- /public/images/backgrounds/img-gradient-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/backgrounds/img-gradient-6.png -------------------------------------------------------------------------------- /public/images/backgrounds/img-gradient-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/backgrounds/img-gradient-7.png -------------------------------------------------------------------------------- /public/images/backgrounds/img-gradient-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/backgrounds/img-gradient-8.png -------------------------------------------------------------------------------- /public/images/backgrounds/img-gradient-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/backgrounds/img-gradient-9.png -------------------------------------------------------------------------------- /public/images/emails/icon_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/emails/icon_email.png -------------------------------------------------------------------------------- /public/images/emails/icon_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/emails/icon_facebook.png -------------------------------------------------------------------------------- /public/images/emails/icon_youtube_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/emails/icon_youtube_medium.png -------------------------------------------------------------------------------- /public/images/emails/img_hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/emails/img_hero.png -------------------------------------------------------------------------------- /public/images/emails/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/emails/logo_white.png -------------------------------------------------------------------------------- /public/images/icons/arrow-right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/icons/arrow-right@2x.png -------------------------------------------------------------------------------- /public/images/icons/email@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/icons/email@2x.png -------------------------------------------------------------------------------- /public/images/icons/facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/icons/facebook@2x.png -------------------------------------------------------------------------------- /public/images/icons/github@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/icons/github@2x.png -------------------------------------------------------------------------------- /public/images/icons/live@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/icons/live@2x.png -------------------------------------------------------------------------------- /public/images/icons/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/icons/youtube.png -------------------------------------------------------------------------------- /public/images/icons/youtube@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/icons/youtube@2x.png -------------------------------------------------------------------------------- /public/images/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/og-image.png -------------------------------------------------------------------------------- /public/images/og-image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/og-image1.jpg -------------------------------------------------------------------------------- /public/images/speakers/김성현.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/김성현.png -------------------------------------------------------------------------------- /public/images/speakers/김혜성.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/김혜성.png -------------------------------------------------------------------------------- /public/images/speakers/나윤환.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/나윤환.png -------------------------------------------------------------------------------- /public/images/speakers/심흥운.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/심흥운.png -------------------------------------------------------------------------------- /public/images/speakers/원지혁.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/원지혁.png -------------------------------------------------------------------------------- /public/images/speakers/이경주.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/이경주.png -------------------------------------------------------------------------------- /public/images/speakers/이성원.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/이성원.png -------------------------------------------------------------------------------- /public/images/speakers/이정헌.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/이정헌.png -------------------------------------------------------------------------------- /public/images/speakers/이한.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/이한.png -------------------------------------------------------------------------------- /public/images/speakers/이현섭.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/이현섭.png -------------------------------------------------------------------------------- /public/images/speakers/최수형.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/최수형.png -------------------------------------------------------------------------------- /public/images/speakers/최종택.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/최종택.png -------------------------------------------------------------------------------- /public/images/speakers/최태건.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/speakers/최태건.png -------------------------------------------------------------------------------- /public/images/sponsors/banksalad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/banksalad@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/buzzvil@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/buzzvil@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/carrot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/carrot@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/class-101@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/class-101@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/coupang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/coupang@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/ejn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/ejn@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/jetbrains@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/jetbrains@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/kakao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/kakao@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/marpple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/marpple@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/meshkorea@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/meshkorea@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/naver@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/naver@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/nc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/nc@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/peoplefund@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/peoplefund@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/programmers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/programmers@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/robert@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/robert@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/sendbird@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/sendbird@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/soomgo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/soomgo@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/toss@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/toss@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/wooahan-tech@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/wooahan-tech@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/woowahan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/woowahan@2x.png -------------------------------------------------------------------------------- /public/images/sponsors/yanolja@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/images/sponsors/yanolja@2x.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/constants/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/constants/page.ts -------------------------------------------------------------------------------- /src/constants/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/constants/types.ts -------------------------------------------------------------------------------- /src/motions/about.motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/about.motion.ts -------------------------------------------------------------------------------- /src/motions/callforspeaker.motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/callforspeaker.motion.ts -------------------------------------------------------------------------------- /src/motions/callforsponsor.motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/callforsponsor.motion.ts -------------------------------------------------------------------------------- /src/motions/coc.motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/coc.motion.ts -------------------------------------------------------------------------------- /src/motions/header.motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/header.motion.ts -------------------------------------------------------------------------------- /src/motions/hero.motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/hero.motion.ts -------------------------------------------------------------------------------- /src/motions/notice.motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/notice.motion.ts -------------------------------------------------------------------------------- /src/motions/pre-registration.motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/pre-registration.motion.ts -------------------------------------------------------------------------------- /src/motions/presets.motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/presets.motion.ts -------------------------------------------------------------------------------- /src/motions/register.motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/register.motion.ts -------------------------------------------------------------------------------- /src/motions/sessions.motions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/sessions.motions.ts -------------------------------------------------------------------------------- /src/motions/speakerList.motion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/speakerList.motion.ts -------------------------------------------------------------------------------- /src/motions/sponsor.motions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/motions/sponsor.motions.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/pages/index.ts -------------------------------------------------------------------------------- /src/pages/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/pages/sessions.ts -------------------------------------------------------------------------------- /src/resources/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/resources/data.ts -------------------------------------------------------------------------------- /src/store/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/store/firebase.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/store/interfaces.ts -------------------------------------------------------------------------------- /src/store/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/store/rootReducer.ts -------------------------------------------------------------------------------- /src/store/slices/appSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/store/slices/appSlice.ts -------------------------------------------------------------------------------- /src/store/slices/sessionSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/store/slices/sessionSlice.ts -------------------------------------------------------------------------------- /src/store/slices/stickySlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/store/slices/stickySlice.ts -------------------------------------------------------------------------------- /src/store/slices/supportSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/store/slices/supportSlice.ts -------------------------------------------------------------------------------- /src/styles/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/styles/_font.scss -------------------------------------------------------------------------------- /src/styles/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/styles/_global.scss -------------------------------------------------------------------------------- /src/styles/_keyframes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/styles/_keyframes.scss -------------------------------------------------------------------------------- /src/styles/_mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/styles/_mixin.scss -------------------------------------------------------------------------------- /src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/styles/_variables.scss -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/utils/hooks/use-dynamic-render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/utils/hooks/use-dynamic-render.ts -------------------------------------------------------------------------------- /src/utils/hooks/use-firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/utils/hooks/use-firebase.ts -------------------------------------------------------------------------------- /src/utils/hooks/use-intersection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/utils/hooks/use-intersection.ts -------------------------------------------------------------------------------- /src/utils/hooks/use-liveState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/utils/hooks/use-liveState.ts -------------------------------------------------------------------------------- /src/utils/hooks/use-modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/utils/hooks/use-modal.ts -------------------------------------------------------------------------------- /src/utils/hooks/use-parallel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/utils/hooks/use-parallel.ts -------------------------------------------------------------------------------- /src/utils/hooks/use-window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/utils/hooks/use-window.ts -------------------------------------------------------------------------------- /src/utils/suffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/utils/suffle.ts -------------------------------------------------------------------------------- /src/views/components/AboutSection/AboutSection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/AboutSection/AboutSection.module.scss -------------------------------------------------------------------------------- /src/views/components/AboutSection/AboutSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/AboutSection/AboutSection.tsx -------------------------------------------------------------------------------- /src/views/components/AwesomeCircle/AwesomeCircle.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/AwesomeCircle/AwesomeCircle.module.scss -------------------------------------------------------------------------------- /src/views/components/AwesomeCircle/AwesomeCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/AwesomeCircle/AwesomeCircle.tsx -------------------------------------------------------------------------------- /src/views/components/CallForSpeakerSection/CallForSpeakerSection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/CallForSpeakerSection/CallForSpeakerSection.module.scss -------------------------------------------------------------------------------- /src/views/components/CallForSpeakerSection/CallForSpeakerSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/CallForSpeakerSection/CallForSpeakerSection.tsx -------------------------------------------------------------------------------- /src/views/components/CallForSponsorSection/CallForSponsorSection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/CallForSponsorSection/CallForSponsorSection.module.scss -------------------------------------------------------------------------------- /src/views/components/CallForSponsorSection/CallForSponsorSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/CallForSponsorSection/CallForSponsorSection.tsx -------------------------------------------------------------------------------- /src/views/components/CloseButton/CloseButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/CloseButton/CloseButton.module.scss -------------------------------------------------------------------------------- /src/views/components/CloseButton/CloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/CloseButton/CloseButton.tsx -------------------------------------------------------------------------------- /src/views/components/CoCModal/CoCModal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/CoCModal/CoCModal.module.scss -------------------------------------------------------------------------------- /src/views/components/CoCModal/CoCModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/CoCModal/CoCModal.tsx -------------------------------------------------------------------------------- /src/views/components/DashedCircle/DashedCircle.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/DashedCircle/DashedCircle.module.scss -------------------------------------------------------------------------------- /src/views/components/DashedCircle/DashedCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/DashedCircle/DashedCircle.tsx -------------------------------------------------------------------------------- /src/views/components/Empty/Empty.module.scss: -------------------------------------------------------------------------------- 1 | .Empty { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/views/components/Empty/Empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/Empty/Empty.tsx -------------------------------------------------------------------------------- /src/views/components/Footer/Footer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/Footer/Footer.module.scss -------------------------------------------------------------------------------- /src/views/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/views/components/GitHubUserMessageForm/GitHubUserMessageForm.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/GitHubUserMessageForm/GitHubUserMessageForm.module.scss -------------------------------------------------------------------------------- /src/views/components/GitHubUserMessageForm/GitHubUserMessageForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/GitHubUserMessageForm/GitHubUserMessageForm.tsx -------------------------------------------------------------------------------- /src/views/components/Header/Header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/Header/Header.module.scss -------------------------------------------------------------------------------- /src/views/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/views/components/HeroSection/HeroSection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/HeroSection/HeroSection.module.scss -------------------------------------------------------------------------------- /src/views/components/HeroSection/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/HeroSection/HeroSection.tsx -------------------------------------------------------------------------------- /src/views/components/MenuModal/MenuModal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/MenuModal/MenuModal.module.scss -------------------------------------------------------------------------------- /src/views/components/MenuModal/MenuModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/MenuModal/MenuModal.tsx -------------------------------------------------------------------------------- /src/views/components/MobileSpeakerList/MobileSpeakerList.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/MobileSpeakerList/MobileSpeakerList.module.scss -------------------------------------------------------------------------------- /src/views/components/MobileSpeakerList/MobileSpeakerList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/MobileSpeakerList/MobileSpeakerList.tsx -------------------------------------------------------------------------------- /src/views/components/ModalContainer/ModalContainer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/ModalContainer/ModalContainer.module.scss -------------------------------------------------------------------------------- /src/views/components/ModalContainer/ModalContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/ModalContainer/ModalContainer.tsx -------------------------------------------------------------------------------- /src/views/components/MotionNumber/MotionNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/MotionNumber/MotionNumber.tsx -------------------------------------------------------------------------------- /src/views/components/NoticeSection/NoticeSection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/NoticeSection/NoticeSection.module.scss -------------------------------------------------------------------------------- /src/views/components/NoticeSection/NoticeSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/NoticeSection/NoticeSection.tsx -------------------------------------------------------------------------------- /src/views/components/PlatformList/PlatformList.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/PlatformList/PlatformList.module.scss -------------------------------------------------------------------------------- /src/views/components/PlatformList/PlatformList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/PlatformList/PlatformList.tsx -------------------------------------------------------------------------------- /src/views/components/Portal/Portal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/Portal/Portal.module.scss -------------------------------------------------------------------------------- /src/views/components/Portal/Portal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/Portal/Portal.tsx -------------------------------------------------------------------------------- /src/views/components/PreRegistrationSection/PreRegistrationSection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/PreRegistrationSection/PreRegistrationSection.module.scss -------------------------------------------------------------------------------- /src/views/components/PreRegistrationSection/PreRegistrationSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/PreRegistrationSection/PreRegistrationSection.tsx -------------------------------------------------------------------------------- /src/views/components/PreRegistrationSection/components/Message/Message.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/PreRegistrationSection/components/Message/Message.module.scss -------------------------------------------------------------------------------- /src/views/components/PreRegistrationSection/components/Message/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/PreRegistrationSection/components/Message/Message.tsx -------------------------------------------------------------------------------- /src/views/components/PrivateInfoConfirmation/PrivateInfoConfirmation.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/PrivateInfoConfirmation/PrivateInfoConfirmation.module.scss -------------------------------------------------------------------------------- /src/views/components/PrivateInfoConfirmation/PrivateInfoConfirmation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/PrivateInfoConfirmation/PrivateInfoConfirmation.tsx -------------------------------------------------------------------------------- /src/views/components/RegisterButton/RegisterButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/RegisterButton/RegisterButton.module.scss -------------------------------------------------------------------------------- /src/views/components/RegisterButton/RegisterButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/RegisterButton/RegisterButton.tsx -------------------------------------------------------------------------------- /src/views/components/RegisterSection/RegisterSection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/RegisterSection/RegisterSection.module.scss -------------------------------------------------------------------------------- /src/views/components/RegisterSection/RegisterSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/RegisterSection/RegisterSection.tsx -------------------------------------------------------------------------------- /src/views/components/RegisterSupportButton/RegisterSupportButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/RegisterSupportButton/RegisterSupportButton.tsx -------------------------------------------------------------------------------- /src/views/components/SafeLink/SafeLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SafeLink/SafeLink.tsx -------------------------------------------------------------------------------- /src/views/components/SessionDetailModal/SessionDetailModal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SessionDetailModal/SessionDetailModal.module.scss -------------------------------------------------------------------------------- /src/views/components/SessionDetailModal/SessionDetailModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SessionDetailModal/SessionDetailModal.tsx -------------------------------------------------------------------------------- /src/views/components/SessionListSection/SessionListSection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SessionListSection/SessionListSection.module.scss -------------------------------------------------------------------------------- /src/views/components/SessionListSection/SessionListSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SessionListSection/SessionListSection.tsx -------------------------------------------------------------------------------- /src/views/components/SessionView/SessionView.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SessionView/SessionView.module.scss -------------------------------------------------------------------------------- /src/views/components/SessionView/SessionView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SessionView/SessionView.tsx -------------------------------------------------------------------------------- /src/views/components/SpeakerCardView/SpeakerCardView.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SpeakerCardView/SpeakerCardView.module.scss -------------------------------------------------------------------------------- /src/views/components/SpeakerCardView/SpeakerCardView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SpeakerCardView/SpeakerCardView.tsx -------------------------------------------------------------------------------- /src/views/components/SpeakerListSection/SpeakerListSection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SpeakerListSection/SpeakerListSection.module.scss -------------------------------------------------------------------------------- /src/views/components/SpeakerListSection/SpeakerListSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SpeakerListSection/SpeakerListSection.tsx -------------------------------------------------------------------------------- /src/views/components/SponsorGradeContainer/SponsorGradeContainer.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SponsorGradeContainer/SponsorGradeContainer.module.scss -------------------------------------------------------------------------------- /src/views/components/SponsorGradeContainer/SponsorGradeContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SponsorGradeContainer/SponsorGradeContainer.tsx -------------------------------------------------------------------------------- /src/views/components/SponsorList/SponsorList.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SponsorList/SponsorList.module.scss -------------------------------------------------------------------------------- /src/views/components/SponsorList/SponsorList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SponsorList/SponsorList.tsx -------------------------------------------------------------------------------- /src/views/components/SponsorSection/SponsorSection.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SponsorSection/SponsorSection.module.scss -------------------------------------------------------------------------------- /src/views/components/SponsorSection/SponsorSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SponsorSection/SponsorSection.tsx -------------------------------------------------------------------------------- /src/views/components/Support/Support.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/Support/Support.module.scss -------------------------------------------------------------------------------- /src/views/components/Support/Support.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/Support/Support.tsx -------------------------------------------------------------------------------- /src/views/components/SupportFormModal/SupportFormModal.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SupportFormModal/SupportFormModal.module.scss -------------------------------------------------------------------------------- /src/views/components/SupportFormModal/SupportFormModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/SupportFormModal/SupportFormModal.tsx -------------------------------------------------------------------------------- /src/views/components/YoutubeButton/YoutubeButton.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/YoutubeButton/YoutubeButton.module.scss -------------------------------------------------------------------------------- /src/views/components/YoutubeButton/YoutubeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/components/YoutubeButton/YoutubeButton.tsx -------------------------------------------------------------------------------- /src/views/page-components/HomePage/HomePage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/page-components/HomePage/HomePage.module.scss -------------------------------------------------------------------------------- /src/views/page-components/HomePage/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/page-components/HomePage/HomePage.tsx -------------------------------------------------------------------------------- /src/views/page-components/SessionPage/SessionPage.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/page-components/SessionPage/SessionPage.module.scss -------------------------------------------------------------------------------- /src/views/page-components/SessionPage/SessionPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/page-components/SessionPage/SessionPage.tsx -------------------------------------------------------------------------------- /src/views/svg-components/ArrowDownIcon/ArrowDownIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/ArrowDownIcon/ArrowDownIcon.tsx -------------------------------------------------------------------------------- /src/views/svg-components/HeaderLogo/HeaderLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/HeaderLogo/HeaderLogo.tsx -------------------------------------------------------------------------------- /src/views/svg-components/LineBackground/AirPlanePath.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/LineBackground/AirPlanePath.module.scss -------------------------------------------------------------------------------- /src/views/svg-components/LineBackground/AirPlanePath.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/LineBackground/AirPlanePath.tsx -------------------------------------------------------------------------------- /src/views/svg-components/LineBackground/LineBackground.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/LineBackground/LineBackground.module.scss -------------------------------------------------------------------------------- /src/views/svg-components/LineBackground/LineBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/LineBackground/LineBackground.tsx -------------------------------------------------------------------------------- /src/views/svg-components/LineBackground/LinePath.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/LineBackground/LinePath.module.scss -------------------------------------------------------------------------------- /src/views/svg-components/LineBackground/mobile/LinePathMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/LineBackground/mobile/LinePathMobile.tsx -------------------------------------------------------------------------------- /src/views/svg-components/LineBackground/pc/LinePathPC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/LineBackground/pc/LinePathPC.tsx -------------------------------------------------------------------------------- /src/views/svg-components/MainLogo/MainLogo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/MainLogo/MainLogo.module.scss -------------------------------------------------------------------------------- /src/views/svg-components/MainLogo/MainLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/MainLogo/MainLogo.tsx -------------------------------------------------------------------------------- /src/views/svg-components/MainLogo/_MainLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/MainLogo/_MainLogo.tsx -------------------------------------------------------------------------------- /src/views/svg-components/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/src/views/svg-components/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2020/HEAD/tsconfig.json --------------------------------------------------------------------------------