├── .editorconfig ├── .eslintrc.cjs ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── panda.config.ts ├── postcss.config.cjs ├── public ├── favicon.ico └── fe2024_og.png ├── src ├── app │ ├── components │ │ ├── ChildcareSection │ │ │ ├── ChildcareSection.tsx │ │ │ ├── assets │ │ │ │ └── jaranda.png │ │ │ └── index.ts │ │ ├── CoCSection │ │ │ ├── CoCSection.tsx │ │ │ └── index.ts │ │ ├── ContactSection │ │ │ ├── ContactSection.tsx │ │ │ └── index.ts │ │ ├── FooterSection │ │ │ ├── FooterSection.tsx │ │ │ └── index.ts │ │ ├── HeroIntroWrap │ │ │ ├── HeroIntroWrap.tsx │ │ │ └── index.ts │ │ ├── HeroSection │ │ │ ├── HeroSection.tsx │ │ │ ├── components │ │ │ │ ├── DataLocation.tsx │ │ │ │ ├── HeroLogo.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── IntroSection │ │ │ ├── IntroSection.tsx │ │ │ └── index.ts │ │ ├── OpenSourceSection │ │ │ ├── OpenSourceSection.tsx │ │ │ ├── assets │ │ │ │ ├── babel.png │ │ │ │ ├── core-js.png │ │ │ │ ├── ky.png │ │ │ │ ├── pretendard.png │ │ │ │ ├── query.png │ │ │ │ ├── react-hook-form.png │ │ │ │ ├── ts-pattern.png │ │ │ │ └── zod.png │ │ │ └── index.ts │ │ ├── ProgramSection │ │ │ ├── ProgramSection.tsx │ │ │ ├── assets │ │ │ │ └── timetable.jpg │ │ │ ├── components │ │ │ │ ├── ProgramHeader.tsx │ │ │ │ ├── ProgramTab.tsx │ │ │ │ ├── SessionList.tsx │ │ │ │ ├── components │ │ │ │ │ ├── ArrowIcon.tsx │ │ │ │ │ ├── ClockIcon.tsx │ │ │ │ │ ├── CloseIcon.tsx │ │ │ │ │ ├── SessionModal.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── SponsorSection │ │ │ ├── SponsorSection.tsx │ │ │ ├── assets │ │ │ │ └── it.png │ │ │ ├── comopnents │ │ │ │ ├── SponsorInfo.tsx │ │ │ │ ├── assets │ │ │ │ │ ├── F-Lab.png │ │ │ │ │ ├── carrot.png │ │ │ │ │ ├── googlecloud.png │ │ │ │ │ ├── imweb.png │ │ │ │ │ ├── oliveyoung.png │ │ │ │ │ ├── soomgo.png │ │ │ │ │ ├── stibee.png │ │ │ │ │ ├── toss.png │ │ │ │ │ ├── wooritech.png │ │ │ │ │ └── wyyyes.png │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ └── reset.css ├── features │ ├── .gitkeep │ ├── aurora │ │ ├── assets │ │ │ ├── background.png │ │ │ ├── background2.png │ │ │ ├── background3.png │ │ │ ├── background4-half.png │ │ │ ├── background4-min.png │ │ │ ├── background4-tiny.png │ │ │ ├── background4.png │ │ │ └── bg2-tiny.png │ │ ├── components │ │ │ ├── Aurora.tsx │ │ │ └── index.ts │ │ └── contexts │ │ │ ├── AuroraContext.tsx │ │ │ └── index.ts │ ├── effects │ │ └── components │ │ │ ├── AuroraContainer.tsx │ │ │ ├── SphereContainer.tsx │ │ │ ├── SphereEffect │ │ │ ├── SphereEffect.tsx │ │ │ ├── assets │ │ │ │ └── img_noise.png │ │ │ ├── components │ │ │ │ ├── GradientSphere │ │ │ │ │ ├── ExtendedMaterial.ts │ │ │ │ │ ├── GradientSphere.tsx │ │ │ │ │ ├── MeshPhysicalMaterialWithGlow.tsx │ │ │ │ │ ├── ReactExtendedMaterial.tsx │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── gradient1.jpg │ │ │ │ │ │ ├── gradient2.jpg │ │ │ │ │ │ └── gradient3.jpg │ │ │ │ │ ├── external │ │ │ │ │ │ ├── BlurShader.ts │ │ │ │ │ │ ├── BokehPass2.js │ │ │ │ │ │ ├── BokehShader.ts │ │ │ │ │ │ ├── FixedNoiseEffect.ts │ │ │ │ │ │ ├── KawaseBlurPass.js │ │ │ │ │ │ ├── KawaseBlurShader.js │ │ │ │ │ │ ├── ReactFixedNoiseEffect.ts │ │ │ │ │ │ └── _BlurPass.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ │ └── index.ts │ ├── hooks │ │ ├── useHeroScreen.ts │ │ └── usePrefersReducedMotion.ts │ └── programs │ │ ├── constants │ │ └── index.ts │ │ ├── contexts │ │ └── index.tsx │ │ ├── data │ │ └── sessions.ts │ │ └── types │ │ └── index.ts └── shared │ ├── components │ ├── Button │ │ ├── Button.tsx │ │ └── index.ts │ ├── Column.tsx │ ├── FadeIn.tsx │ ├── Footer │ │ ├── Footer.tsx │ │ ├── components │ │ │ ├── Logo.tsx │ │ │ └── index.ts │ │ ├── icons │ │ │ └── index.tsx │ │ └── index.ts │ ├── Header │ │ ├── Header.tsx │ │ ├── components │ │ │ ├── Logo.tsx │ │ │ └── index.ts │ │ └── index.ts │ ├── MainCTAButton │ │ ├── MainCTAButton.tsx │ │ ├── hooks │ │ │ └── index.ts │ │ └── index.ts │ ├── SectionTitle.tsx │ └── index.ts │ ├── constants │ └── index.ts │ └── icons │ ├── LocationIcon.tsx │ ├── TimeIcon.tsx │ └── index.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/package.json -------------------------------------------------------------------------------- /panda.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/panda.config.ts -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fe2024_og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/public/fe2024_og.png -------------------------------------------------------------------------------- /src/app/components/ChildcareSection/ChildcareSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ChildcareSection/ChildcareSection.tsx -------------------------------------------------------------------------------- /src/app/components/ChildcareSection/assets/jaranda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ChildcareSection/assets/jaranda.png -------------------------------------------------------------------------------- /src/app/components/ChildcareSection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ChildcareSection'; 2 | -------------------------------------------------------------------------------- /src/app/components/CoCSection/CoCSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/CoCSection/CoCSection.tsx -------------------------------------------------------------------------------- /src/app/components/CoCSection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './CoCSection'; 2 | -------------------------------------------------------------------------------- /src/app/components/ContactSection/ContactSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ContactSection/ContactSection.tsx -------------------------------------------------------------------------------- /src/app/components/ContactSection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ContactSection'; 2 | -------------------------------------------------------------------------------- /src/app/components/FooterSection/FooterSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/FooterSection/FooterSection.tsx -------------------------------------------------------------------------------- /src/app/components/FooterSection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './FooterSection'; 2 | -------------------------------------------------------------------------------- /src/app/components/HeroIntroWrap/HeroIntroWrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/HeroIntroWrap/HeroIntroWrap.tsx -------------------------------------------------------------------------------- /src/app/components/HeroIntroWrap/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './HeroIntroWrap'; 2 | -------------------------------------------------------------------------------- /src/app/components/HeroSection/HeroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/HeroSection/HeroSection.tsx -------------------------------------------------------------------------------- /src/app/components/HeroSection/components/DataLocation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/HeroSection/components/DataLocation.tsx -------------------------------------------------------------------------------- /src/app/components/HeroSection/components/HeroLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/HeroSection/components/HeroLogo.tsx -------------------------------------------------------------------------------- /src/app/components/HeroSection/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/HeroSection/components/index.ts -------------------------------------------------------------------------------- /src/app/components/HeroSection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './HeroSection'; 2 | -------------------------------------------------------------------------------- /src/app/components/IntroSection/IntroSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/IntroSection/IntroSection.tsx -------------------------------------------------------------------------------- /src/app/components/IntroSection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './IntroSection'; 2 | -------------------------------------------------------------------------------- /src/app/components/OpenSourceSection/OpenSourceSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/OpenSourceSection/OpenSourceSection.tsx -------------------------------------------------------------------------------- /src/app/components/OpenSourceSection/assets/babel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/OpenSourceSection/assets/babel.png -------------------------------------------------------------------------------- /src/app/components/OpenSourceSection/assets/core-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/OpenSourceSection/assets/core-js.png -------------------------------------------------------------------------------- /src/app/components/OpenSourceSection/assets/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/OpenSourceSection/assets/ky.png -------------------------------------------------------------------------------- /src/app/components/OpenSourceSection/assets/pretendard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/OpenSourceSection/assets/pretendard.png -------------------------------------------------------------------------------- /src/app/components/OpenSourceSection/assets/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/OpenSourceSection/assets/query.png -------------------------------------------------------------------------------- /src/app/components/OpenSourceSection/assets/react-hook-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/OpenSourceSection/assets/react-hook-form.png -------------------------------------------------------------------------------- /src/app/components/OpenSourceSection/assets/ts-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/OpenSourceSection/assets/ts-pattern.png -------------------------------------------------------------------------------- /src/app/components/OpenSourceSection/assets/zod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/OpenSourceSection/assets/zod.png -------------------------------------------------------------------------------- /src/app/components/OpenSourceSection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './OpenSourceSection'; 2 | -------------------------------------------------------------------------------- /src/app/components/ProgramSection/ProgramSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ProgramSection/ProgramSection.tsx -------------------------------------------------------------------------------- /src/app/components/ProgramSection/assets/timetable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ProgramSection/assets/timetable.jpg -------------------------------------------------------------------------------- /src/app/components/ProgramSection/components/ProgramHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ProgramSection/components/ProgramHeader.tsx -------------------------------------------------------------------------------- /src/app/components/ProgramSection/components/ProgramTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ProgramSection/components/ProgramTab.tsx -------------------------------------------------------------------------------- /src/app/components/ProgramSection/components/SessionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ProgramSection/components/SessionList.tsx -------------------------------------------------------------------------------- /src/app/components/ProgramSection/components/components/ArrowIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ProgramSection/components/components/ArrowIcon.tsx -------------------------------------------------------------------------------- /src/app/components/ProgramSection/components/components/ClockIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ProgramSection/components/components/ClockIcon.tsx -------------------------------------------------------------------------------- /src/app/components/ProgramSection/components/components/CloseIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ProgramSection/components/components/CloseIcon.tsx -------------------------------------------------------------------------------- /src/app/components/ProgramSection/components/components/SessionModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ProgramSection/components/components/SessionModal.tsx -------------------------------------------------------------------------------- /src/app/components/ProgramSection/components/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ProgramSection/components/components/index.ts -------------------------------------------------------------------------------- /src/app/components/ProgramSection/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/ProgramSection/components/index.ts -------------------------------------------------------------------------------- /src/app/components/ProgramSection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ProgramSection'; 2 | -------------------------------------------------------------------------------- /src/app/components/SponsorSection/SponsorSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/SponsorSection.tsx -------------------------------------------------------------------------------- /src/app/components/SponsorSection/assets/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/assets/it.png -------------------------------------------------------------------------------- /src/app/components/SponsorSection/comopnents/SponsorInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/comopnents/SponsorInfo.tsx -------------------------------------------------------------------------------- /src/app/components/SponsorSection/comopnents/assets/F-Lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/comopnents/assets/F-Lab.png -------------------------------------------------------------------------------- /src/app/components/SponsorSection/comopnents/assets/carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/comopnents/assets/carrot.png -------------------------------------------------------------------------------- /src/app/components/SponsorSection/comopnents/assets/googlecloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/comopnents/assets/googlecloud.png -------------------------------------------------------------------------------- /src/app/components/SponsorSection/comopnents/assets/imweb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/comopnents/assets/imweb.png -------------------------------------------------------------------------------- /src/app/components/SponsorSection/comopnents/assets/oliveyoung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/comopnents/assets/oliveyoung.png -------------------------------------------------------------------------------- /src/app/components/SponsorSection/comopnents/assets/soomgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/comopnents/assets/soomgo.png -------------------------------------------------------------------------------- /src/app/components/SponsorSection/comopnents/assets/stibee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/comopnents/assets/stibee.png -------------------------------------------------------------------------------- /src/app/components/SponsorSection/comopnents/assets/toss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/comopnents/assets/toss.png -------------------------------------------------------------------------------- /src/app/components/SponsorSection/comopnents/assets/wooritech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/comopnents/assets/wooritech.png -------------------------------------------------------------------------------- /src/app/components/SponsorSection/comopnents/assets/wyyyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/comopnents/assets/wyyyes.png -------------------------------------------------------------------------------- /src/app/components/SponsorSection/comopnents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/SponsorSection/comopnents/index.ts -------------------------------------------------------------------------------- /src/app/components/SponsorSection/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SponsorSection'; 2 | -------------------------------------------------------------------------------- /src/app/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/components/index.ts -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/app/reset.css -------------------------------------------------------------------------------- /src/features/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/features/aurora/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/aurora/assets/background.png -------------------------------------------------------------------------------- /src/features/aurora/assets/background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/aurora/assets/background2.png -------------------------------------------------------------------------------- /src/features/aurora/assets/background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/aurora/assets/background3.png -------------------------------------------------------------------------------- /src/features/aurora/assets/background4-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/aurora/assets/background4-half.png -------------------------------------------------------------------------------- /src/features/aurora/assets/background4-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/aurora/assets/background4-min.png -------------------------------------------------------------------------------- /src/features/aurora/assets/background4-tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/aurora/assets/background4-tiny.png -------------------------------------------------------------------------------- /src/features/aurora/assets/background4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/aurora/assets/background4.png -------------------------------------------------------------------------------- /src/features/aurora/assets/bg2-tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/aurora/assets/bg2-tiny.png -------------------------------------------------------------------------------- /src/features/aurora/components/Aurora.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/aurora/components/Aurora.tsx -------------------------------------------------------------------------------- /src/features/aurora/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/aurora/components/index.ts -------------------------------------------------------------------------------- /src/features/aurora/contexts/AuroraContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/aurora/contexts/AuroraContext.tsx -------------------------------------------------------------------------------- /src/features/aurora/contexts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/aurora/contexts/index.ts -------------------------------------------------------------------------------- /src/features/effects/components/AuroraContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/AuroraContainer.tsx -------------------------------------------------------------------------------- /src/features/effects/components/SphereContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereContainer.tsx -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/SphereEffect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/SphereEffect.tsx -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/assets/img_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/assets/img_noise.png -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/ExtendedMaterial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/ExtendedMaterial.ts -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/GradientSphere.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/GradientSphere.tsx -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/MeshPhysicalMaterialWithGlow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/MeshPhysicalMaterialWithGlow.tsx -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/ReactExtendedMaterial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/ReactExtendedMaterial.tsx -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/assets/gradient1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/assets/gradient1.jpg -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/assets/gradient2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/assets/gradient2.jpg -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/assets/gradient3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/assets/gradient3.jpg -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/external/BlurShader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/external/BlurShader.ts -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/external/BokehPass2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/external/BokehPass2.js -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/external/BokehShader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/external/BokehShader.ts -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/external/FixedNoiseEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/external/FixedNoiseEffect.ts -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/external/KawaseBlurPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/external/KawaseBlurPass.js -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/external/KawaseBlurShader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/external/KawaseBlurShader.js -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/external/ReactFixedNoiseEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/external/ReactFixedNoiseEffect.ts -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/external/_BlurPass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/GradientSphere/external/_BlurPass.ts -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/GradientSphere/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './GradientSphere'; 2 | -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/SphereEffect/components/index.ts -------------------------------------------------------------------------------- /src/features/effects/components/SphereEffect/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './SphereEffect'; 2 | -------------------------------------------------------------------------------- /src/features/effects/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/effects/components/index.ts -------------------------------------------------------------------------------- /src/features/hooks/useHeroScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/hooks/useHeroScreen.ts -------------------------------------------------------------------------------- /src/features/hooks/usePrefersReducedMotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/hooks/usePrefersReducedMotion.ts -------------------------------------------------------------------------------- /src/features/programs/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/programs/constants/index.ts -------------------------------------------------------------------------------- /src/features/programs/contexts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/programs/contexts/index.tsx -------------------------------------------------------------------------------- /src/features/programs/data/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/programs/data/sessions.ts -------------------------------------------------------------------------------- /src/features/programs/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/features/programs/types/index.ts -------------------------------------------------------------------------------- /src/shared/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/Button/Button.tsx -------------------------------------------------------------------------------- /src/shared/components/Button/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Button'; 2 | -------------------------------------------------------------------------------- /src/shared/components/Column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/Column.tsx -------------------------------------------------------------------------------- /src/shared/components/FadeIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/FadeIn.tsx -------------------------------------------------------------------------------- /src/shared/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/shared/components/Footer/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/Footer/components/Logo.tsx -------------------------------------------------------------------------------- /src/shared/components/Footer/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/Footer/components/index.ts -------------------------------------------------------------------------------- /src/shared/components/Footer/icons/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/Footer/icons/index.tsx -------------------------------------------------------------------------------- /src/shared/components/Footer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Footer'; 2 | -------------------------------------------------------------------------------- /src/shared/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/shared/components/Header/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/Header/components/Logo.tsx -------------------------------------------------------------------------------- /src/shared/components/Header/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/Header/components/index.ts -------------------------------------------------------------------------------- /src/shared/components/Header/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Header'; 2 | -------------------------------------------------------------------------------- /src/shared/components/MainCTAButton/MainCTAButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/MainCTAButton/MainCTAButton.tsx -------------------------------------------------------------------------------- /src/shared/components/MainCTAButton/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/MainCTAButton/hooks/index.ts -------------------------------------------------------------------------------- /src/shared/components/MainCTAButton/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './MainCTAButton'; 2 | -------------------------------------------------------------------------------- /src/shared/components/SectionTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/SectionTitle.tsx -------------------------------------------------------------------------------- /src/shared/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/components/index.ts -------------------------------------------------------------------------------- /src/shared/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/constants/index.ts -------------------------------------------------------------------------------- /src/shared/icons/LocationIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/icons/LocationIcon.tsx -------------------------------------------------------------------------------- /src/shared/icons/TimeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/icons/TimeIcon.tsx -------------------------------------------------------------------------------- /src/shared/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/src/shared/icons/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedgkr/feconf2024/HEAD/yarn.lock --------------------------------------------------------------------------------