├── .vscode ├── mySnippets.code-snippets └── settings.json ├── cms ├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── api │ ├── .gitkeep │ ├── flow-page │ │ ├── config │ │ │ └── routes.json │ │ ├── controllers │ │ │ └── flow-page.js │ │ ├── models │ │ │ ├── flow-page.js │ │ │ └── flow-page.settings.json │ │ └── services │ │ │ └── flow-page.js │ ├── index-page │ │ ├── config │ │ │ └── routes.json │ │ ├── controllers │ │ │ └── index-page.js │ │ ├── models │ │ │ ├── index-page.js │ │ │ └── index-page.settings.json │ │ └── services │ │ │ └── index-page.js │ ├── language │ │ ├── config │ │ │ └── routes.json │ │ ├── controllers │ │ │ └── language.js │ │ ├── models │ │ │ ├── language.js │ │ │ └── language.settings.json │ │ └── services │ │ │ └── language.js │ └── project │ │ ├── config │ │ └── routes.json │ │ ├── controllers │ │ └── project.js │ │ ├── models │ │ ├── project.js │ │ └── project.settings.json │ │ └── services │ │ └── project.js ├── components │ ├── creative-component │ │ └── creative-item.json │ └── page │ │ ├── head.json │ │ ├── link.json │ │ ├── localized-head.json │ │ ├── localized-long-text.json │ │ ├── localized-rich-text.json │ │ ├── localized-short-text.json │ │ └── video.json ├── config │ ├── database.js │ ├── env │ │ ├── development │ │ │ ├── database.js │ │ │ └── server.js │ │ └── production │ │ │ ├── database.js │ │ │ └── server.js │ ├── functions │ │ ├── bootstrap.js │ │ ├── cron.js │ │ └── responses │ │ │ └── 404.js │ └── server.js ├── extensions │ ├── .gitkeep │ ├── upload │ │ └── config │ │ │ └── settings.js │ └── users-permissions │ │ └── config │ │ └── jwt.js ├── favicon.ico ├── init.sql ├── package-lock.json ├── package.json ├── plugins │ ├── dump-db │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── admin │ │ │ └── src │ │ │ │ ├── containers │ │ │ │ ├── App │ │ │ │ │ └── index.js │ │ │ │ ├── HomePage │ │ │ │ │ └── index.js │ │ │ │ └── Initializer │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── lifecycles.js │ │ │ │ ├── pluginId.js │ │ │ │ ├── translations │ │ │ │ ├── ar.json │ │ │ │ ├── cs.json │ │ │ │ ├── de.json │ │ │ │ ├── en.json │ │ │ │ ├── es.json │ │ │ │ ├── fr.json │ │ │ │ ├── id.json │ │ │ │ ├── index.js │ │ │ │ ├── it.json │ │ │ │ ├── ko.json │ │ │ │ ├── ms.json │ │ │ │ ├── nl.json │ │ │ │ ├── pl.json │ │ │ │ ├── pt-BR.json │ │ │ │ ├── pt.json │ │ │ │ ├── ru.json │ │ │ │ ├── sk.json │ │ │ │ ├── th.json │ │ │ │ ├── tr.json │ │ │ │ ├── uk.json │ │ │ │ ├── vi.json │ │ │ │ ├── zh-Hans.json │ │ │ │ └── zh.json │ │ │ │ └── utils │ │ │ │ └── getTrad.js │ │ ├── config │ │ │ └── routes.json │ │ ├── controllers │ │ │ └── dump-db.js │ │ ├── package.json │ │ └── services │ │ │ └── dump-db.js │ ├── dump-production-db │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── admin │ │ │ └── src │ │ │ │ ├── containers │ │ │ │ ├── App │ │ │ │ │ └── index.js │ │ │ │ ├── HomePage │ │ │ │ │ └── index.js │ │ │ │ └── Initializer │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── lifecycles.js │ │ │ │ ├── pluginId.js │ │ │ │ ├── translations │ │ │ │ ├── ar.json │ │ │ │ ├── cs.json │ │ │ │ ├── de.json │ │ │ │ ├── en.json │ │ │ │ ├── es.json │ │ │ │ ├── fr.json │ │ │ │ ├── id.json │ │ │ │ ├── index.js │ │ │ │ ├── it.json │ │ │ │ ├── ko.json │ │ │ │ ├── ms.json │ │ │ │ ├── nl.json │ │ │ │ ├── pl.json │ │ │ │ ├── pt-BR.json │ │ │ │ ├── pt.json │ │ │ │ ├── ru.json │ │ │ │ ├── sk.json │ │ │ │ ├── th.json │ │ │ │ ├── tr.json │ │ │ │ ├── uk.json │ │ │ │ ├── vi.json │ │ │ │ ├── zh-Hans.json │ │ │ │ └── zh.json │ │ │ │ └── utils │ │ │ │ └── getTrad.js │ │ ├── config │ │ │ └── routes.json │ │ ├── controllers │ │ │ └── dump-production-db.js │ │ ├── package.json │ │ └── services │ │ │ └── dump-production-db.js │ └── sync-db │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── README.md │ │ ├── admin │ │ └── src │ │ │ ├── containers │ │ │ ├── App │ │ │ │ └── index.js │ │ │ ├── HomePage │ │ │ │ └── index.js │ │ │ └── Initializer │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── lifecycles.js │ │ │ ├── pluginId.js │ │ │ ├── translations │ │ │ ├── ar.json │ │ │ ├── cs.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ ├── id.json │ │ │ ├── index.js │ │ │ ├── it.json │ │ │ ├── ko.json │ │ │ ├── ms.json │ │ │ ├── nl.json │ │ │ ├── pl.json │ │ │ ├── pt-BR.json │ │ │ ├── pt.json │ │ │ ├── ru.json │ │ │ ├── sk.json │ │ │ ├── th.json │ │ │ ├── tr.json │ │ │ ├── uk.json │ │ │ ├── vi.json │ │ │ ├── zh-Hans.json │ │ │ └── zh.json │ │ │ └── utils │ │ │ └── getTrad.js │ │ ├── config │ │ └── routes.json │ │ ├── controllers │ │ └── sync-db.js │ │ ├── package.json │ │ └── services │ │ └── sync-db.js ├── public │ ├── draco │ │ ├── README.md │ │ ├── draco_decoder.js │ │ ├── draco_decoder.wasm │ │ ├── draco_encoder.js │ │ ├── draco_wasm_wrapper.js │ │ └── gltf │ │ │ ├── draco_decoder.js │ │ │ ├── draco_decoder.wasm │ │ │ ├── draco_encoder.js │ │ │ └── draco_wasm_wrapper.js │ ├── robots.txt │ └── uploads │ │ └── .gitkeep └── scripts │ ├── dump-db.js │ └── sync-db.js ├── docs ├── deploy.md └── start.md └── frontend ├── .babelrc ├── .env.example ├── .eslintrc.json ├── .gitignore ├── .prettierrc.js ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── public ├── draco │ ├── README.md │ ├── draco_decoder.js │ ├── draco_decoder.wasm │ ├── draco_encoder.js │ ├── draco_wasm_wrapper.js │ └── gltf │ │ ├── draco_decoder.js │ │ ├── draco_decoder.wasm │ │ ├── draco_encoder.js │ │ └── draco_wasm_wrapper.js ├── favicon.ico ├── fonts │ ├── 1.woff2 │ ├── 2.woff2 │ ├── opensans400latin.woff2 │ ├── opensans400latinext.woff2 │ ├── opensans800latin.woff2 │ ├── opensans800latinext.woff2 │ ├── playfair400italic.woff2 │ ├── playfair400latin.woff2 │ └── playfairItalic800latin.woff2 └── robots.txt ├── references └── loadingDraco.txt ├── src ├── components │ ├── Animations │ │ ├── ButterflyString │ │ │ ├── ButterflyString.tsx │ │ │ ├── framerPresets.tsx │ │ │ └── styled │ │ │ │ ├── BlueprintContainer.tsx │ │ │ │ ├── LetterWrapper.tsx │ │ │ │ ├── LettersContainer.tsx │ │ │ │ ├── TextWrapper.tsx │ │ │ │ └── Wrapper.tsx │ │ ├── ButterflyWithKey │ │ │ ├── ButterflyWithKey.tsx │ │ │ ├── framerPresets.tsx │ │ │ └── styled │ │ │ │ ├── ContentWrapper.tsx │ │ │ │ ├── LetterWrapper.tsx │ │ │ │ ├── LettersContainer.tsx │ │ │ │ ├── MeasureWrapper.tsx │ │ │ │ ├── TextWrapper.tsx │ │ │ │ └── Wrapper.tsx │ │ ├── Parallax │ │ │ ├── Parallax.tsx │ │ │ ├── styled │ │ │ │ └── Wrapper.tsx │ │ │ └── utils │ │ │ │ └── lerp.ts │ │ ├── ParallaxScroll │ │ │ ├── ParallaxScroll.tsx │ │ │ └── styled │ │ │ │ └── Wrapper.tsx │ │ ├── ReplaceItem │ │ │ ├── ReplaceItem.tsx │ │ │ └── styled │ │ │ │ ├── ContentWrapper.tsx │ │ │ │ ├── DefaultItemWrapper.tsx │ │ │ │ ├── FloatItemWrapper.tsx │ │ │ │ └── Wrapper.tsx │ │ ├── RevealButterflyString │ │ │ ├── RevealButterflyString.tsx │ │ │ ├── framerPresets.tsx │ │ │ └── styled │ │ │ │ ├── LetterWrapper.tsx │ │ │ │ ├── LettersContainer.tsx │ │ │ │ ├── TextWrapper.tsx │ │ │ │ ├── WordWrapper.tsx │ │ │ │ └── Wrapper.tsx │ │ ├── RevealItem │ │ │ ├── RevealItem.tsx │ │ │ └── styled │ │ │ │ ├── ContentWrapper.tsx │ │ │ │ └── Wrapper.tsx │ │ ├── RevealString │ │ │ ├── RevealString.tsx │ │ │ └── styled │ │ │ │ ├── LetterContainer.tsx │ │ │ │ ├── LetterWrapper.tsx │ │ │ │ ├── LettersContainer.tsx │ │ │ │ └── WordWrapper.tsx │ │ ├── SlideIn │ │ │ ├── SlideIn.tsx │ │ │ └── styled │ │ │ │ └── Wrapper.tsx │ │ ├── SlideItemWithKey │ │ │ ├── SlideItemWithKey.tsx │ │ │ ├── framerPresets.tsx │ │ │ └── styled │ │ │ │ ├── ContentWrapper.tsx │ │ │ │ ├── MeasureWrapper.tsx │ │ │ │ ├── RevealWrapper.tsx │ │ │ │ └── Wrapper.tsx │ │ ├── SlideTextWithKey │ │ │ ├── SlideTextWithKey.tsx │ │ │ ├── framerPresets.tsx │ │ │ └── styled │ │ │ │ ├── ContentWrapper.tsx │ │ │ │ ├── LettersContainer.tsx │ │ │ │ ├── MeasureWrapper.tsx │ │ │ │ ├── WordWrapper.tsx │ │ │ │ └── Wrapper.tsx │ │ ├── SlideWithKey │ │ │ ├── SlideWithKey.tsx │ │ │ ├── framerPresets.tsx │ │ │ └── styled │ │ │ │ ├── ContentWrapper.tsx │ │ │ │ ├── MeasureWrapper.tsx │ │ │ │ ├── RevealWrapper.tsx │ │ │ │ └── Wrapper.tsx │ │ └── framerTransitions.ts │ ├── ArrowBtn │ │ ├── ArrowBtn.tsx │ │ └── styled │ │ │ ├── Circle.tsx │ │ │ ├── ContentWrapper.tsx │ │ │ ├── Text.tsx │ │ │ └── Wrapper.tsx │ ├── BurgerIcon │ │ ├── BurgerIcon.tsx │ │ ├── framerPresets.ts │ │ └── styled │ │ │ ├── BarsWrapper.tsx │ │ │ ├── CircleBackground.tsx │ │ │ ├── ContentWrapper.tsx │ │ │ ├── MenuBar.tsx │ │ │ └── Wrapper.tsx │ ├── Buttons │ │ ├── BlobButton │ │ │ ├── BlobButton.tsx │ │ │ └── styled │ │ │ │ └── Wrapper.tsx │ │ └── DefaultButton │ │ │ ├── DefaultButton.tsx │ │ │ └── styled │ │ │ └── Wrapper.tsx │ ├── Carousel │ │ ├── Carousel.tsx │ │ ├── components │ │ │ ├── NavArrowButton │ │ │ │ ├── NavArrowButton.tsx │ │ │ │ ├── images │ │ │ │ │ └── arrow.svg │ │ │ │ └── styled │ │ │ │ │ ├── ArrowImage.tsx │ │ │ │ │ ├── ArrowWrapper.tsx │ │ │ │ │ ├── Button.tsx │ │ │ │ │ ├── ButtonOutline.tsx │ │ │ │ │ └── Wrapper.tsx │ │ │ ├── NavDots │ │ │ │ ├── NavDots.tsx │ │ │ │ └── styled │ │ │ │ │ ├── Dot.tsx │ │ │ │ │ ├── DotContainer.tsx │ │ │ │ │ ├── DotsWrapper.tsx │ │ │ │ │ └── Wrapper.tsx │ │ │ └── PropsItem │ │ │ │ └── PropsItem.tsx │ │ ├── constants.ts │ │ ├── framerPresets.ts │ │ ├── styled │ │ │ ├── Item.tsx │ │ │ ├── ItemsContainer.tsx │ │ │ ├── NavArrowNext.tsx │ │ │ ├── NavArrowPrev.tsx │ │ │ ├── NavDotsBottom.tsx │ │ │ └── Wrapper.tsx │ │ └── utils │ │ │ ├── swipePower.ts │ │ │ └── wrap.ts │ ├── CarouselItem │ │ ├── CarouselItem.tsx │ │ ├── framerPresets.tsx │ │ └── styled │ │ │ ├── ContentWrapper.tsx │ │ │ └── Wrapper.tsx │ ├── CustomContainer │ │ ├── CustomContainer.tsx │ │ ├── styled │ │ │ ├── Container.tsx │ │ │ ├── ContainerWrapper.tsx │ │ │ └── CoverWrapper.tsx │ │ └── utils │ │ │ └── customContainers.ts │ ├── Footer │ │ ├── Footer.tsx │ │ └── styled │ │ │ ├── ContentWrapper.tsx │ │ │ ├── FooterContainer.tsx │ │ │ ├── FooterLink.tsx │ │ │ └── InfoText.tsx │ ├── HoverWrapper │ │ ├── HoverWrapper.tsx │ │ └── styled │ │ │ ├── AnimationWrapper.tsx │ │ │ └── Wrapper.tsx │ ├── InfiniteTimeline │ │ ├── InfiniteTimeline.tsx │ │ ├── constants.ts │ │ ├── hooks │ │ │ ├── useApplyScroll.ts │ │ │ ├── useMouseWheelEvents.ts │ │ │ ├── useOnResize.ts │ │ │ ├── useProgress.ts │ │ │ ├── useSeekTo.ts │ │ │ └── useTouchEvents.ts │ │ ├── styled │ │ │ ├── ContentWrapper.tsx │ │ │ ├── TimelineItemsWrapper.tsx │ │ │ └── Wrapper.tsx │ │ └── utils │ │ │ ├── calculateProgress.ts │ │ │ ├── getPaddedOffset.ts │ │ │ └── retrieveCurrentOffset.ts │ ├── InfiniteTimelineItem │ │ ├── InfiniteTimelineItem.tsx │ │ ├── styled │ │ │ ├── Item.tsx │ │ │ ├── ItemWrapper.tsx │ │ │ └── Wrapper.tsx │ │ └── utils │ │ │ ├── modHorizontal.ts │ │ │ └── modVertical.ts │ ├── InfoFooter │ │ ├── InfoFooter.tsx │ │ └── styled │ │ │ ├── ContentWrapper.tsx │ │ │ ├── LinkComp.tsx │ │ │ ├── Name.tsx │ │ │ ├── Text.tsx │ │ │ └── Wrapper.tsx │ ├── LanguageSelector │ │ ├── LanguageSelector.tsx │ │ ├── images │ │ │ └── dropArrow.svg │ │ └── styled │ │ │ ├── Option.tsx │ │ │ └── Wrapper.tsx │ ├── Layout │ │ ├── Layout.tsx │ │ └── styled │ │ │ ├── BackButton.tsx │ │ │ ├── BackWrapper.tsx │ │ │ ├── InfoFooterComp.tsx │ │ │ └── Wrapper.tsx │ ├── MenuItem │ │ ├── MenuItem.tsx │ │ └── styled │ │ │ ├── Image.tsx │ │ │ ├── ImageContainer.tsx │ │ │ ├── ImageWrapper.tsx │ │ │ ├── LinkItem.tsx │ │ │ ├── Underline.tsx │ │ │ └── Wrapper.tsx │ ├── Modal │ │ ├── Modal.tsx │ │ ├── images │ │ │ └── closeicon.svg │ │ └── styled │ │ │ ├── CloseButtonContainer.tsx │ │ │ ├── CloseButtonImg.tsx │ │ │ ├── ModalBackground.tsx │ │ │ ├── ModalContentWrapper.tsx │ │ │ ├── ModalWrapper.tsx │ │ │ ├── OpacityWrapper.tsx │ │ │ └── Wrapper.tsx │ ├── PageWrapper │ │ ├── PageWrapper.tsx │ │ ├── framerPresets.ts │ │ ├── styled │ │ │ ├── PageContentWrapper.tsx │ │ │ └── Wrapper.tsx │ │ └── utils │ │ │ ├── retrieveScrollPosition.tsx │ │ │ └── saveScrollPosition.tsx │ ├── PreloadImage │ │ ├── PreloadImage.tsx │ │ └── styled │ │ │ └── ImageWrapper.tsx │ ├── RichText │ │ ├── RichText.tsx │ │ └── styled │ │ │ └── Wrapper.tsx │ ├── Social │ │ ├── Social.tsx │ │ └── styled │ │ │ ├── Anchor.tsx │ │ │ ├── ContentWrapper.tsx │ │ │ ├── Description.tsx │ │ │ └── Wrapper.tsx │ ├── SocialsBox │ │ ├── SocialsBox.tsx │ │ └── styled │ │ │ ├── ContentWrapper.tsx │ │ │ ├── SocialComp.tsx │ │ │ └── Wrapper.tsx │ ├── ThemeSelector │ │ ├── ThemeSelector.tsx │ │ ├── components │ │ │ ├── Cloud │ │ │ │ ├── Cloud.tsx │ │ │ │ ├── images │ │ │ │ │ └── cloud.svg │ │ │ │ └── styled │ │ │ │ │ ├── CloudImage.tsx │ │ │ │ │ └── Wrapper.tsx │ │ │ ├── ShootingStar │ │ │ │ ├── ShootingStar.tsx │ │ │ │ └── styled │ │ │ │ │ ├── StarImage.tsx │ │ │ │ │ └── Wrapper.tsx │ │ │ └── Star │ │ │ │ ├── Star.tsx │ │ │ │ └── styled │ │ │ │ ├── StarImage.tsx │ │ │ │ └── Wrapper.tsx │ │ ├── constants.ts │ │ ├── framerPresets.ts │ │ ├── images │ │ │ └── cloud.svg │ │ └── styled │ │ │ ├── BackgroundWrapper.tsx │ │ │ ├── Ball.tsx │ │ │ ├── BallCircle.tsx │ │ │ ├── BallCircleWrapper.tsx │ │ │ ├── CloudsWrapper.tsx │ │ │ ├── DayWrapper.tsx │ │ │ ├── Glow.tsx │ │ │ ├── NightWrapper.tsx │ │ │ ├── ShootingStarsWrapper.tsx │ │ │ ├── StarsWrapper.tsx │ │ │ ├── ToggleSwitch.tsx │ │ │ └── Wrapper.tsx │ ├── UnderlineLink │ │ ├── UnderlineLink.tsx │ │ └── styled │ │ │ ├── ContentWrapper.tsx │ │ │ ├── Text.tsx │ │ │ ├── Underline.tsx │ │ │ └── Wrapper.tsx │ └── Video │ │ ├── Video.tsx │ │ └── styled │ │ ├── IFrame.tsx │ │ ├── SourceVideo.tsx │ │ ├── VideoContainer.tsx │ │ ├── VideoCover.tsx │ │ ├── VideoWrapper.tsx │ │ └── Wrapper.tsx ├── containers │ ├── BubblesPage │ │ ├── BubblesPage.tsx │ │ ├── functions │ │ │ ├── app.ts │ │ │ ├── canvasSketch.tsx │ │ │ ├── mouseMove │ │ │ │ ├── functions │ │ │ │ │ └── handleEvents.ts │ │ │ │ ├── mouseMove.ts │ │ │ │ └── utils │ │ │ │ │ └── lerp.ts │ │ │ ├── touchTexture.tsx │ │ │ └── utils │ │ │ │ ├── easings.ts │ │ │ │ ├── getRandBetween.ts │ │ │ │ └── wrap.ts │ │ └── styled │ │ │ ├── CanvasWrapper.tsx │ │ │ └── Wrapper.tsx │ ├── CardLeaderPage │ │ ├── 2D │ │ │ ├── App.ts │ │ │ ├── MouseCircle.ts │ │ │ ├── Singletons │ │ │ │ └── MouseMove.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ └── lerp.ts │ │ ├── CardLeaderPage.tsx │ │ ├── classes │ │ │ ├── App.ts │ │ │ ├── Components │ │ │ │ ├── CardItem3D.ts │ │ │ │ ├── CardItem3DAnimated.ts │ │ │ │ ├── InteractiveObject3D.ts │ │ │ │ ├── IntersectiveBackground3D.ts │ │ │ │ └── MediaObject3D.ts │ │ │ ├── HTMLComponents │ │ │ │ └── HTMLComponent.ts │ │ │ ├── Scenes │ │ │ │ ├── CardScene.ts │ │ │ │ ├── FollowScene.ts │ │ │ │ └── InteractiveScene.ts │ │ │ ├── Singletons │ │ │ │ ├── MouseMove.ts │ │ │ │ └── Scroll.ts │ │ │ ├── Utility │ │ │ │ └── Preloader.ts │ │ │ ├── shaders │ │ │ │ └── media │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ └── vertex.glsl │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── getRand.ts │ │ │ │ └── lerp.ts │ │ ├── data.ts │ │ ├── styled │ │ │ ├── CanvasWrapper.tsx │ │ │ ├── Slider │ │ │ │ ├── CanvasCircleWrapper.tsx │ │ │ │ ├── SignContainer.tsx │ │ │ │ ├── SignSvgComp.tsx │ │ │ │ ├── SignWrapper.tsx │ │ │ │ ├── SliderItem.tsx │ │ │ │ ├── SliderItemChild.tsx │ │ │ │ └── SliderWrapper.tsx │ │ │ └── Wrapper.tsx │ │ └── svg │ │ │ └── SignSvg.tsx │ ├── ConstellationPage │ │ ├── ConstellationPage.tsx │ │ ├── appClasses │ │ │ ├── App.ts │ │ │ ├── Background.ts │ │ │ ├── CanvasSketch.ts │ │ │ ├── MouseCircle.ts │ │ │ ├── MouseMove │ │ │ │ ├── MouseMove.ts │ │ │ │ └── utils │ │ │ │ │ └── lerp.ts │ │ │ ├── Particle.ts │ │ │ ├── constants.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── easings.ts │ │ │ │ ├── getBoundaryOpacity.ts │ │ │ │ ├── getLength.ts │ │ │ │ ├── getRandBetween.ts │ │ │ │ ├── lerp.ts │ │ │ │ └── wrap.ts │ │ ├── data.ts │ │ └── styled │ │ │ ├── CanvasWrapper.tsx │ │ │ └── Wrapper.tsx │ ├── ErrorPage │ │ ├── ErrorPage.tsx │ │ └── styled │ │ │ ├── CodeWrapper.tsx │ │ │ └── ErrorCode.tsx │ ├── FlowPage │ │ ├── FlowPage.tsx │ │ ├── components │ │ │ └── FlowApp │ │ │ │ ├── FlowApp.tsx │ │ │ │ ├── components │ │ │ │ └── FlowPageContent │ │ │ │ │ ├── FlowPageContent.tsx │ │ │ │ │ └── styled │ │ │ │ │ ├── ContentWrapper.tsx │ │ │ │ │ ├── Description.tsx │ │ │ │ │ ├── FinalContainer.tsx │ │ │ │ │ ├── FinalWrapper.tsx │ │ │ │ │ ├── Header │ │ │ │ │ ├── HeaderTitle.tsx │ │ │ │ │ ├── HeaderWrapper.tsx │ │ │ │ │ ├── TitleWrapper.tsx │ │ │ │ │ └── WordsWrapper.tsx │ │ │ │ │ ├── ImageDescription.tsx │ │ │ │ │ ├── ImageItem.tsx │ │ │ │ │ ├── ImagePlaceholder.tsx │ │ │ │ │ ├── ImageWrapper.tsx │ │ │ │ │ ├── ImagesColumn.tsx │ │ │ │ │ ├── InfoColumn.tsx │ │ │ │ │ ├── Slider │ │ │ │ │ ├── ItemsWrapper.tsx │ │ │ │ │ ├── SliderItem.tsx │ │ │ │ │ └── SliderWrapper.tsx │ │ │ │ │ ├── Swipe │ │ │ │ │ ├── SwipeCircle.tsx │ │ │ │ │ ├── SwipeContainer.tsx │ │ │ │ │ ├── SwipeLine.tsx │ │ │ │ │ ├── SwipeText.tsx │ │ │ │ │ └── SwipeWrapper.tsx │ │ │ │ │ └── Wrapper.tsx │ │ │ │ ├── functions │ │ │ │ ├── app.ts │ │ │ │ ├── imagePlanes.ts │ │ │ │ ├── imageSlider.ts │ │ │ │ ├── lights.ts │ │ │ │ ├── media.ts │ │ │ │ ├── mediaSlide.ts │ │ │ │ ├── scroll │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── applyScroll.ts │ │ │ │ │ │ ├── getProgressValues.ts │ │ │ │ │ │ ├── handleEvents.ts │ │ │ │ │ │ └── seekTo.ts │ │ │ │ │ ├── scroll.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── calculateProgress.ts │ │ │ │ │ │ ├── getPaddedOffset.ts │ │ │ │ │ │ ├── lerp.ts │ │ │ │ │ │ └── retrieveCurrentOffset.ts │ │ │ │ ├── shaders │ │ │ │ │ ├── media │ │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ │ └── vertex.glsl │ │ │ │ │ └── mediaSlide │ │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ │ └── vertex.glsl │ │ │ │ ├── sideScroll │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── applyScroll.ts │ │ │ │ │ │ ├── getProgressValues.ts │ │ │ │ │ │ ├── handleEvents.ts │ │ │ │ │ │ └── seekTo.ts │ │ │ │ │ ├── sideScroll.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── calculateProgress.ts │ │ │ │ │ │ ├── getPaddedOffset.ts │ │ │ │ │ │ ├── lerp.ts │ │ │ │ │ │ └── retrieveCurrentOffset.ts │ │ │ │ └── world.ts │ │ │ │ └── styled │ │ │ │ ├── Cover.tsx │ │ │ │ ├── FlowPageContentComp.tsx │ │ │ │ ├── FlowPageContentWrapper.tsx │ │ │ │ ├── RendererWrapper.tsx │ │ │ │ └── Wrapper.tsx │ │ ├── data.ts │ │ └── styled │ │ │ └── Wrapper.tsx │ ├── GlobePage │ │ ├── GlobePage.tsx │ │ ├── components │ │ │ └── GlobeApp │ │ │ │ ├── GlobeApp.tsx │ │ │ │ ├── constants.ts │ │ │ │ ├── functions │ │ │ │ ├── app.ts │ │ │ │ ├── bullet.ts │ │ │ │ ├── curve.ts │ │ │ │ ├── dots.ts │ │ │ │ ├── globe.ts │ │ │ │ ├── images │ │ │ │ │ ├── earth.jpg │ │ │ │ │ ├── map.webp │ │ │ │ │ ├── mymap.png │ │ │ │ │ ├── siurmap.png │ │ │ │ │ ├── smallmap.png │ │ │ │ │ ├── test.jpg │ │ │ │ │ ├── test.png │ │ │ │ │ └── testmap.png │ │ │ │ ├── lights.ts │ │ │ │ ├── scroll │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── applyScroll.ts │ │ │ │ │ │ └── handleEvents.ts │ │ │ │ │ ├── scroll.ts │ │ │ │ │ └── utils │ │ │ │ │ │ └── lerp.ts │ │ │ │ ├── shaders │ │ │ │ │ ├── curve │ │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ │ └── vertex.glsl │ │ │ │ │ ├── dots │ │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ │ └── vertex.glsl │ │ │ │ │ ├── globe │ │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ │ └── vertex.glsl │ │ │ │ │ └── halo │ │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ │ └── vertex.glsl │ │ │ │ ├── utils │ │ │ │ │ ├── calcPosFromLatLonRad.ts │ │ │ │ │ ├── getRandBetween.ts │ │ │ │ │ └── isPointVisible.ts │ │ │ │ └── world.ts │ │ │ │ └── styled │ │ │ │ ├── ContentWrapper.tsx │ │ │ │ ├── Cover.tsx │ │ │ │ ├── RendererWrapper.tsx │ │ │ │ ├── Wrapper.tsx │ │ │ │ └── zoom │ │ │ │ ├── RingSvg.tsx │ │ │ │ ├── RingWrapper.tsx │ │ │ │ ├── Text.tsx │ │ │ │ └── ZoomWrapper.tsx │ │ ├── data.ts │ │ └── styled │ │ │ └── Wrapper.tsx │ ├── IndexPage │ │ ├── IndexPage.tsx │ │ ├── data.ts │ │ └── styled │ │ │ ├── ContentWrapper.tsx │ │ │ ├── Description.tsx │ │ │ ├── InfoWrapper.tsx │ │ │ ├── LinkComp.tsx │ │ │ ├── LinksWrapper.tsx │ │ │ ├── MenuItemComp.tsx │ │ │ ├── Name.tsx │ │ │ ├── ProjectsWrapper.tsx │ │ │ └── Wrapper.tsx │ ├── MotionCirclePage │ │ ├── MotionCirclePage.tsx │ │ ├── functions │ │ │ ├── Particle.ts │ │ │ ├── app.ts │ │ │ ├── canvasSketch.ts │ │ │ ├── mouseMove │ │ │ │ ├── functions │ │ │ │ │ └── handleEvents.ts │ │ │ │ ├── mouseMove.ts │ │ │ │ └── utils │ │ │ │ │ └── lerp.ts │ │ │ ├── touchTexture.tsx │ │ │ └── utils │ │ │ │ ├── easings.ts │ │ │ │ ├── getRandBetween.ts │ │ │ │ └── wrap.ts │ │ └── styled │ │ │ ├── CanvasWrapper.tsx │ │ │ └── Wrapper.tsx │ ├── OrbitGalleryPage │ │ ├── OrbitGalleryPage.tsx │ │ ├── classes │ │ │ ├── App.ts │ │ │ ├── Components │ │ │ │ ├── GalleryItem3D.ts │ │ │ │ ├── InteractiveObject3D.ts │ │ │ │ ├── IntersectiveBackground3D.ts │ │ │ │ └── MediaObject3D.ts │ │ │ ├── HTMLComponents │ │ │ │ ├── HTMLComponent.ts │ │ │ │ ├── Title.ts │ │ │ │ └── TitlesWrapper.ts │ │ │ ├── Scenes │ │ │ │ ├── GalleryScene.ts │ │ │ │ ├── InteractiveScene.ts │ │ │ │ └── OrbitScene.ts │ │ │ ├── Singletons │ │ │ │ ├── MouseMove.ts │ │ │ │ └── Scroll.ts │ │ │ ├── Utility │ │ │ │ └── Preloader.ts │ │ │ ├── shaders │ │ │ │ └── storyItem │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ └── vertex.glsl │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── getRand.ts │ │ │ │ └── lerp.ts │ │ ├── data.ts │ │ └── styled │ │ │ ├── CanvasWrapper.tsx │ │ │ ├── Gallery │ │ │ ├── GalleryItem.tsx │ │ │ ├── GalleryWrapper.tsx │ │ │ ├── Image.tsx │ │ │ ├── Text.tsx │ │ │ ├── TextWrapper.tsx │ │ │ └── TextsContainer.tsx │ │ │ └── Wrapper.tsx │ ├── ParticlesPage │ │ ├── ParticlesPage.tsx │ │ ├── components │ │ │ └── App │ │ │ │ ├── App.tsx │ │ │ │ ├── functions │ │ │ │ ├── app.ts │ │ │ │ ├── images │ │ │ │ │ └── mask.jpg │ │ │ │ ├── lights.ts │ │ │ │ ├── model.ts │ │ │ │ ├── mouseMove │ │ │ │ │ ├── functions │ │ │ │ │ │ └── handleEvents.ts │ │ │ │ │ ├── mouseMove.ts │ │ │ │ │ └── utils │ │ │ │ │ │ └── lerp.ts │ │ │ │ ├── scroll │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── applyScroll.ts │ │ │ │ │ │ └── handleEvents.ts │ │ │ │ │ ├── scroll.ts │ │ │ │ │ └── utils │ │ │ │ │ │ └── lerp.ts │ │ │ │ ├── shaders │ │ │ │ │ └── mediaSlide │ │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ │ └── vertex.glsl │ │ │ │ ├── touchTexture.tsx │ │ │ │ ├── utils │ │ │ │ │ ├── easings.ts │ │ │ │ │ ├── getRandBetween.ts │ │ │ │ │ └── wrap.ts │ │ │ │ └── world.ts │ │ │ │ └── styled │ │ │ │ ├── ContentWrapper.tsx │ │ │ │ ├── Cover.tsx │ │ │ │ ├── RendererWrapper.tsx │ │ │ │ ├── Text.tsx │ │ │ │ ├── TextWrapper.tsx │ │ │ │ └── Wrapper.tsx │ │ ├── data.ts │ │ └── styled │ │ │ └── Wrapper.tsx │ ├── PlaygroundGalleryPage │ │ ├── PlaygroundGalleryPage.styles.ts │ │ ├── PlaygroundGalleryPage.tsx │ │ ├── appState.ts │ │ ├── classes │ │ │ ├── App.ts │ │ │ ├── Components │ │ │ │ ├── InteractiveObject3D.ts │ │ │ │ ├── IntersectiveBackground3D.ts │ │ │ │ ├── MediaHolder3D.ts │ │ │ │ ├── MediaObject3D.ts │ │ │ │ └── Medias │ │ │ │ │ ├── Image3D.ts │ │ │ │ │ ├── Model3D.ts │ │ │ │ │ └── Video3D.ts │ │ │ ├── Scenes │ │ │ │ ├── InteractiveScene.ts │ │ │ │ ├── ItemScene.ts │ │ │ │ └── SlideScene.ts │ │ │ ├── Singletons │ │ │ │ ├── MouseMove.ts │ │ │ │ ├── Scroll.ts │ │ │ │ └── TouchPinch.ts │ │ │ ├── Utility │ │ │ │ ├── GroupScroll.ts │ │ │ │ └── Preloader.ts │ │ │ ├── shaders │ │ │ │ └── media │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ └── vertex.glsl │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── getRand.ts │ │ │ │ ├── lerp.ts │ │ │ │ └── text.ts │ │ ├── components │ │ │ ├── LinkHandler │ │ │ │ └── LinkHandler.tsx │ │ │ ├── MediaRenderer │ │ │ │ ├── MediaRenderer.styles.ts │ │ │ │ └── MediaRenderer.tsx │ │ │ └── Modal │ │ │ │ ├── Modal.motion.ts │ │ │ │ ├── Modal.styles.ts │ │ │ │ └── Modal.tsx │ │ ├── data.ts │ │ └── hooks │ │ │ └── useMediaPreload.ts │ ├── SpiralPage │ │ ├── SpiralPage.tsx │ │ ├── classes │ │ │ ├── App.ts │ │ │ ├── InteractiveObject3D.ts │ │ │ ├── InteractiveScene.ts │ │ │ ├── IntersectiveBackground3D.ts │ │ │ ├── MouseMove │ │ │ │ ├── MouseMove.ts │ │ │ │ └── utils │ │ │ │ │ └── lerp.ts │ │ │ ├── Scroll │ │ │ │ ├── Scroll.ts │ │ │ │ └── utils │ │ │ │ │ └── lerp.ts │ │ │ ├── SpiralScene.ts │ │ │ ├── SpiralSpline3D.ts │ │ │ ├── StoryItem3D.ts │ │ │ ├── StoryScene.ts │ │ │ ├── shaders │ │ │ │ ├── dots │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ └── vertex.glsl │ │ │ │ └── storyItem │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ └── vertex.glsl │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── getRand.ts │ │ │ │ └── lerp.ts │ │ ├── data.ts │ │ └── styled │ │ │ ├── CanvasWrapper.tsx │ │ │ ├── HeadingWrapper.tsx │ │ │ ├── Inspired.tsx │ │ │ ├── SmallText.tsx │ │ │ ├── Text.tsx │ │ │ └── Wrapper.tsx │ ├── StackPage │ │ ├── StackPage.tsx │ │ ├── classes │ │ │ ├── App.ts │ │ │ ├── Components │ │ │ │ ├── CardItem3D.ts │ │ │ │ ├── CardItem3DAnimated.ts │ │ │ │ ├── InteractiveObject3D.ts │ │ │ │ ├── IntersectiveBackground3D.ts │ │ │ │ └── MediaObject3D.ts │ │ │ ├── Scenes │ │ │ │ ├── InteractiveScene.ts │ │ │ │ ├── ItemScene.ts │ │ │ │ └── StackScene.ts │ │ │ ├── Singletons │ │ │ │ ├── MouseMove.ts │ │ │ │ └── Scroll.ts │ │ │ ├── Utility │ │ │ │ └── Preloader.ts │ │ │ ├── shaders │ │ │ │ └── media │ │ │ │ │ ├── fragment.glsl │ │ │ │ │ └── vertex.glsl │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── getRand.ts │ │ │ │ └── lerp.ts │ │ ├── data.ts │ │ ├── styled │ │ │ ├── CanvasWrapper.tsx │ │ │ ├── Wrapper.tsx │ │ │ └── stack │ │ │ │ ├── Border.tsx │ │ │ │ ├── Button.tsx │ │ │ │ ├── ButtonContainer.tsx │ │ │ │ ├── ButtonsWrapper.tsx │ │ │ │ ├── ContentWrapper.tsx │ │ │ │ ├── ForkSvgComp.tsx │ │ │ │ ├── ForkWrapper.tsx │ │ │ │ ├── Image.tsx │ │ │ │ ├── ImageWrapper.tsx │ │ │ │ ├── KnifeSvgComp.tsx │ │ │ │ ├── KnifeWrapper.tsx │ │ │ │ └── Text.tsx │ │ └── svg │ │ │ ├── ForkSvg.tsx │ │ │ └── KnifeSvg.tsx │ ├── StackTowerPage │ │ ├── StackTowerPage.tsx │ │ ├── components │ │ │ └── StackTower │ │ │ │ ├── StackTower.tsx │ │ │ │ ├── components │ │ │ │ ├── ContinueGame │ │ │ │ │ ├── ContinueGame.tsx │ │ │ │ │ └── styled │ │ │ │ │ │ ├── ContentWrapper.tsx │ │ │ │ │ │ ├── Text.tsx │ │ │ │ │ │ └── Wrapper.tsx │ │ │ │ └── NewGame │ │ │ │ │ ├── NewGame.tsx │ │ │ │ │ └── styled │ │ │ │ │ ├── ContentWrapper.tsx │ │ │ │ │ ├── Text.tsx │ │ │ │ │ └── Wrapper.tsx │ │ │ │ ├── functions │ │ │ │ ├── application.ts │ │ │ │ ├── assets │ │ │ │ │ └── pop.mp3 │ │ │ │ ├── box.ts │ │ │ │ ├── distortionPlane.ts │ │ │ │ ├── lights.ts │ │ │ │ ├── overhangBox.ts │ │ │ │ ├── particles.ts │ │ │ │ ├── physics.ts │ │ │ │ ├── shaders │ │ │ │ │ ├── distortionPlaneShaders │ │ │ │ │ │ └── fragShader.glsl │ │ │ │ │ └── fireFlies │ │ │ │ │ │ ├── fragShader.glsl │ │ │ │ │ │ └── vertexShader.glsl │ │ │ │ ├── userInput.ts │ │ │ │ ├── utils │ │ │ │ │ ├── AppTime.ts │ │ │ │ │ └── EventEmitter.ts │ │ │ │ └── world.ts │ │ │ │ └── styled │ │ │ │ ├── ContinueGameComp.tsx │ │ │ │ ├── Counter.tsx │ │ │ │ ├── Cover.tsx │ │ │ │ ├── NewGameComp.tsx │ │ │ │ ├── RendererWrapper.tsx │ │ │ │ ├── StatWrapper.tsx │ │ │ │ └── Wrapper.tsx │ │ ├── data.ts │ │ └── styled │ │ │ ├── CanvasWrapper.tsx │ │ │ └── Wrapper.tsx │ ├── StarShowerPage │ │ ├── StarShowerPage.tsx │ │ ├── appClasses │ │ │ ├── App.ts │ │ │ ├── Background.ts │ │ │ ├── BackgroundStar.ts │ │ │ ├── BigStar.ts │ │ │ ├── CanvasSketch.ts │ │ │ ├── Catapult.ts │ │ │ ├── MiniStar.ts │ │ │ ├── MouseMove │ │ │ │ ├── MouseMove.ts │ │ │ │ └── utils │ │ │ │ │ └── lerp.ts │ │ │ ├── Scroll │ │ │ │ ├── Scroll.ts │ │ │ │ └── utils │ │ │ │ │ └── lerp.ts │ │ │ ├── Star.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── easings.ts │ │ │ │ ├── getLength.ts │ │ │ │ ├── getRandBetween.ts │ │ │ │ └── wrap.ts │ │ ├── data.ts │ │ └── styled │ │ │ ├── CanvasWrapper.tsx │ │ │ ├── InfoBackground.tsx │ │ │ ├── InfoWrapper.tsx │ │ │ ├── Text.tsx │ │ │ └── Wrapper.tsx │ ├── TestPage │ │ ├── TestPage.tsx │ │ ├── data.ts │ │ └── styled │ │ │ ├── LinkWrapper.tsx │ │ │ └── Wrapper.tsx │ └── UniqueCollectionPage │ │ ├── UniqueCollectionPage.tsx │ │ ├── classes │ │ ├── App.ts │ │ ├── Components │ │ │ ├── CardItem3D.ts │ │ │ ├── CardItem3DAnimated.ts │ │ │ ├── InteractiveObject3D.ts │ │ │ ├── IntersectiveBackground3D.ts │ │ │ └── MediaObject3D.ts │ │ ├── HTMLComponents │ │ │ ├── Animation.ts │ │ │ └── Paragraph.ts │ │ ├── Scenes │ │ │ ├── InteractiveScene.ts │ │ │ ├── ItemScene.ts │ │ │ └── SlideScene.ts │ │ ├── Singletons │ │ │ ├── MouseMove.ts │ │ │ └── Scroll.ts │ │ ├── Utility │ │ │ └── Preloader.ts │ │ ├── shaders │ │ │ └── media │ │ │ │ ├── fragment.glsl │ │ │ │ └── vertex.glsl │ │ ├── types.ts │ │ └── utils │ │ │ ├── getRand.ts │ │ │ ├── lerp.ts │ │ │ └── text.ts │ │ ├── data.ts │ │ └── styled │ │ ├── CanvasWrapper.tsx │ │ ├── Wrapper.tsx │ │ └── collection │ │ ├── CollectionWrapper.tsx │ │ ├── ContentWrapper.tsx │ │ ├── DescriptionText.tsx │ │ ├── DescriptionTitle.tsx │ │ ├── DescriptionWrapper.tsx │ │ ├── Image.tsx │ │ ├── ImageWrapper.tsx │ │ ├── Title.tsx │ │ └── TitleWrapper.tsx ├── context │ └── ExampleContext.tsx ├── hooks │ ├── useBreakpoint.ts │ ├── useClickOutside.ts │ ├── useDisableOverscroll.ts │ ├── useDisableScroll.ts │ ├── useElementSize.ts │ ├── useHover.ts │ ├── useImagePreload.ts │ ├── useModal.tsx │ ├── useScroll.ts │ ├── useTouch.ts │ └── useWindowSize.ts ├── pages │ ├── 404.tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── _error.tsx │ ├── bubbles.tsx │ ├── card-leader.tsx │ ├── constellation.tsx │ ├── flow.tsx │ ├── globe.tsx │ ├── index.tsx │ ├── motion-circle.tsx │ ├── orbit-gallery.tsx │ ├── particles.tsx │ ├── playground-gallery.tsx │ ├── spiral.tsx │ ├── stack-tower.tsx │ ├── stack.tsx │ ├── star-shower.tsx │ ├── test.tsx │ └── unique-collection.tsx └── utils │ ├── functions │ ├── getCmsApiClient.tsx │ ├── getElementSize.ts │ ├── getFrontHost.ts │ ├── getIsrTimeout.tsx │ ├── isDev.ts │ ├── popup.ts │ ├── share.ts │ ├── sliceSlash.tsx │ └── strapi │ │ ├── getAllProjectsData.ts │ │ └── getProjectData.ts │ ├── globalState.ts │ ├── i18n.ts │ ├── responsive.ts │ ├── seo │ ├── GoogleAnalytics.tsx │ └── Head.tsx │ ├── sharedValues.ts │ ├── styled │ ├── GlobalStyles.ts │ ├── fontFace.css │ └── shared │ │ └── RichParagraph.tsx │ └── types │ ├── Link.ts │ ├── LocalizedHead.ts │ ├── LocalizedText.ts │ ├── Media.ts │ └── strapi │ ├── CreativeItem.ts │ └── ProjectData.ts └── tsconfig.json /.vscode/mySnippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/.vscode/mySnippets.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /cms/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/.editorconfig -------------------------------------------------------------------------------- /cms/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/.env.example -------------------------------------------------------------------------------- /cms/.eslintignore: -------------------------------------------------------------------------------- 1 | .cache 2 | build 3 | **/node_modules/** 4 | -------------------------------------------------------------------------------- /cms/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/.eslintrc -------------------------------------------------------------------------------- /cms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/.gitignore -------------------------------------------------------------------------------- /cms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/README.md -------------------------------------------------------------------------------- /cms/api/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cms/api/flow-page/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/flow-page/config/routes.json -------------------------------------------------------------------------------- /cms/api/flow-page/controllers/flow-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/flow-page/controllers/flow-page.js -------------------------------------------------------------------------------- /cms/api/flow-page/models/flow-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/flow-page/models/flow-page.js -------------------------------------------------------------------------------- /cms/api/flow-page/models/flow-page.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/flow-page/models/flow-page.settings.json -------------------------------------------------------------------------------- /cms/api/flow-page/services/flow-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/flow-page/services/flow-page.js -------------------------------------------------------------------------------- /cms/api/index-page/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/index-page/config/routes.json -------------------------------------------------------------------------------- /cms/api/index-page/controllers/index-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/index-page/controllers/index-page.js -------------------------------------------------------------------------------- /cms/api/index-page/models/index-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/index-page/models/index-page.js -------------------------------------------------------------------------------- /cms/api/index-page/models/index-page.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/index-page/models/index-page.settings.json -------------------------------------------------------------------------------- /cms/api/index-page/services/index-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/index-page/services/index-page.js -------------------------------------------------------------------------------- /cms/api/language/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/language/config/routes.json -------------------------------------------------------------------------------- /cms/api/language/controllers/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/language/controllers/language.js -------------------------------------------------------------------------------- /cms/api/language/models/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/language/models/language.js -------------------------------------------------------------------------------- /cms/api/language/models/language.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/language/models/language.settings.json -------------------------------------------------------------------------------- /cms/api/language/services/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/language/services/language.js -------------------------------------------------------------------------------- /cms/api/project/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/project/config/routes.json -------------------------------------------------------------------------------- /cms/api/project/controllers/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/project/controllers/project.js -------------------------------------------------------------------------------- /cms/api/project/models/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/project/models/project.js -------------------------------------------------------------------------------- /cms/api/project/models/project.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/project/models/project.settings.json -------------------------------------------------------------------------------- /cms/api/project/services/project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/api/project/services/project.js -------------------------------------------------------------------------------- /cms/components/creative-component/creative-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/components/creative-component/creative-item.json -------------------------------------------------------------------------------- /cms/components/page/head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/components/page/head.json -------------------------------------------------------------------------------- /cms/components/page/link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/components/page/link.json -------------------------------------------------------------------------------- /cms/components/page/localized-head.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/components/page/localized-head.json -------------------------------------------------------------------------------- /cms/components/page/localized-long-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/components/page/localized-long-text.json -------------------------------------------------------------------------------- /cms/components/page/localized-rich-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/components/page/localized-rich-text.json -------------------------------------------------------------------------------- /cms/components/page/localized-short-text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/components/page/localized-short-text.json -------------------------------------------------------------------------------- /cms/components/page/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/components/page/video.json -------------------------------------------------------------------------------- /cms/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/config/database.js -------------------------------------------------------------------------------- /cms/config/env/development/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/config/env/development/database.js -------------------------------------------------------------------------------- /cms/config/env/development/server.js: -------------------------------------------------------------------------------- 1 | module.exports = ({ env }) => ({}); 2 | -------------------------------------------------------------------------------- /cms/config/env/production/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/config/env/production/database.js -------------------------------------------------------------------------------- /cms/config/env/production/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/config/env/production/server.js -------------------------------------------------------------------------------- /cms/config/functions/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/config/functions/bootstrap.js -------------------------------------------------------------------------------- /cms/config/functions/cron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/config/functions/cron.js -------------------------------------------------------------------------------- /cms/config/functions/responses/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/config/functions/responses/404.js -------------------------------------------------------------------------------- /cms/config/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/config/server.js -------------------------------------------------------------------------------- /cms/extensions/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cms/extensions/upload/config/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/extensions/upload/config/settings.js -------------------------------------------------------------------------------- /cms/extensions/users-permissions/config/jwt.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | jwtSecret: process.env.JWT_SECRET || '961ffac2-bac8-4f41-a08a-f7f1a75fd3d8' 3 | }; -------------------------------------------------------------------------------- /cms/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/favicon.ico -------------------------------------------------------------------------------- /cms/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/init.sql -------------------------------------------------------------------------------- /cms/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/package-lock.json -------------------------------------------------------------------------------- /cms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/package.json -------------------------------------------------------------------------------- /cms/plugins/dump-db/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/.editorconfig -------------------------------------------------------------------------------- /cms/plugins/dump-db/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/.gitattributes -------------------------------------------------------------------------------- /cms/plugins/dump-db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/.gitignore -------------------------------------------------------------------------------- /cms/plugins/dump-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/README.md -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/containers/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/admin/src/containers/App/index.js -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/containers/HomePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/admin/src/containers/HomePage/index.js -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/containers/Initializer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/admin/src/containers/Initializer/index.js -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/admin/src/index.js -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/lifecycles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/admin/src/lifecycles.js -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/pluginId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/admin/src/pluginId.js -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/ar.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/cs.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/de.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/en.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/es.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/fr.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/id.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/admin/src/translations/index.js -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/it.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/ko.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/ms.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/nl.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/pl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/pt-BR.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/pt.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/ru.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/sk.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/th.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/tr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/uk.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/vi.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/zh-Hans.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/translations/zh.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-db/admin/src/utils/getTrad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/admin/src/utils/getTrad.js -------------------------------------------------------------------------------- /cms/plugins/dump-db/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/config/routes.json -------------------------------------------------------------------------------- /cms/plugins/dump-db/controllers/dump-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/controllers/dump-db.js -------------------------------------------------------------------------------- /cms/plugins/dump-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/package.json -------------------------------------------------------------------------------- /cms/plugins/dump-db/services/dump-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-db/services/dump-db.js -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/.editorconfig -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/.gitattributes -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/.gitignore -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/README.md -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/containers/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/admin/src/containers/App/index.js -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/containers/HomePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/admin/src/containers/HomePage/index.js -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/containers/Initializer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/admin/src/containers/Initializer/index.js -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/admin/src/index.js -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/lifecycles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/admin/src/lifecycles.js -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/pluginId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/admin/src/pluginId.js -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/ar.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/cs.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/de.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/en.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/es.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/fr.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/id.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/admin/src/translations/index.js -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/it.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/ko.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/ms.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/nl.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/pl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/pt-BR.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/pt.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/ru.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/sk.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/th.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/tr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/uk.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/vi.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/zh-Hans.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/translations/zh.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/admin/src/utils/getTrad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/admin/src/utils/getTrad.js -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/config/routes.json -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/controllers/dump-production-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/controllers/dump-production-db.js -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/package.json -------------------------------------------------------------------------------- /cms/plugins/dump-production-db/services/dump-production-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/dump-production-db/services/dump-production-db.js -------------------------------------------------------------------------------- /cms/plugins/sync-db/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/.editorconfig -------------------------------------------------------------------------------- /cms/plugins/sync-db/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/.gitattributes -------------------------------------------------------------------------------- /cms/plugins/sync-db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/.gitignore -------------------------------------------------------------------------------- /cms/plugins/sync-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/README.md -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/containers/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/admin/src/containers/App/index.js -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/containers/HomePage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/admin/src/containers/HomePage/index.js -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/containers/Initializer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/admin/src/containers/Initializer/index.js -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/admin/src/index.js -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/lifecycles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/admin/src/lifecycles.js -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/pluginId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/admin/src/pluginId.js -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/ar.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/cs.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/de.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/en.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/es.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/fr.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/id.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/admin/src/translations/index.js -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/it.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/ko.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/ms.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/nl.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/pl.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/pt-BR.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/pt.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/ru.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/sk.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/th.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/tr.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/uk.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/vi.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/zh-Hans.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/translations/zh.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cms/plugins/sync-db/admin/src/utils/getTrad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/admin/src/utils/getTrad.js -------------------------------------------------------------------------------- /cms/plugins/sync-db/config/routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/config/routes.json -------------------------------------------------------------------------------- /cms/plugins/sync-db/controllers/sync-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/controllers/sync-db.js -------------------------------------------------------------------------------- /cms/plugins/sync-db/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/package.json -------------------------------------------------------------------------------- /cms/plugins/sync-db/services/sync-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/plugins/sync-db/services/sync-db.js -------------------------------------------------------------------------------- /cms/public/draco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/public/draco/README.md -------------------------------------------------------------------------------- /cms/public/draco/draco_decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/public/draco/draco_decoder.js -------------------------------------------------------------------------------- /cms/public/draco/draco_decoder.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/public/draco/draco_decoder.wasm -------------------------------------------------------------------------------- /cms/public/draco/draco_encoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/public/draco/draco_encoder.js -------------------------------------------------------------------------------- /cms/public/draco/draco_wasm_wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/public/draco/draco_wasm_wrapper.js -------------------------------------------------------------------------------- /cms/public/draco/gltf/draco_decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/public/draco/gltf/draco_decoder.js -------------------------------------------------------------------------------- /cms/public/draco/gltf/draco_decoder.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/public/draco/gltf/draco_decoder.wasm -------------------------------------------------------------------------------- /cms/public/draco/gltf/draco_encoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/public/draco/gltf/draco_encoder.js -------------------------------------------------------------------------------- /cms/public/draco/gltf/draco_wasm_wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/public/draco/gltf/draco_wasm_wrapper.js -------------------------------------------------------------------------------- /cms/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/public/robots.txt -------------------------------------------------------------------------------- /cms/public/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cms/scripts/dump-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/scripts/dump-db.js -------------------------------------------------------------------------------- /cms/scripts/sync-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/cms/scripts/sync-db.js -------------------------------------------------------------------------------- /docs/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/docs/deploy.md -------------------------------------------------------------------------------- /docs/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/docs/start.md -------------------------------------------------------------------------------- /frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/.babelrc -------------------------------------------------------------------------------- /frontend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/.env.example -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/.eslintrc.json -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .*-key.json 3 | .DS_Store 4 | .next 5 | dist 6 | .env 7 | debug.log 8 | 9 | -------------------------------------------------------------------------------- /frontend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/.prettierrc.js -------------------------------------------------------------------------------- /frontend/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/next-env.d.ts -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/draco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/draco/README.md -------------------------------------------------------------------------------- /frontend/public/draco/draco_decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/draco/draco_decoder.js -------------------------------------------------------------------------------- /frontend/public/draco/draco_decoder.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/draco/draco_decoder.wasm -------------------------------------------------------------------------------- /frontend/public/draco/draco_encoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/draco/draco_encoder.js -------------------------------------------------------------------------------- /frontend/public/draco/draco_wasm_wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/draco/draco_wasm_wrapper.js -------------------------------------------------------------------------------- /frontend/public/draco/gltf/draco_decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/draco/gltf/draco_decoder.js -------------------------------------------------------------------------------- /frontend/public/draco/gltf/draco_decoder.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/draco/gltf/draco_decoder.wasm -------------------------------------------------------------------------------- /frontend/public/draco/gltf/draco_encoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/draco/gltf/draco_encoder.js -------------------------------------------------------------------------------- /frontend/public/draco/gltf/draco_wasm_wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/draco/gltf/draco_wasm_wrapper.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/fonts/1.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/fonts/1.woff2 -------------------------------------------------------------------------------- /frontend/public/fonts/2.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/fonts/2.woff2 -------------------------------------------------------------------------------- /frontend/public/fonts/opensans400latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/fonts/opensans400latin.woff2 -------------------------------------------------------------------------------- /frontend/public/fonts/opensans400latinext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/fonts/opensans400latinext.woff2 -------------------------------------------------------------------------------- /frontend/public/fonts/opensans800latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/fonts/opensans800latin.woff2 -------------------------------------------------------------------------------- /frontend/public/fonts/opensans800latinext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/fonts/opensans800latinext.woff2 -------------------------------------------------------------------------------- /frontend/public/fonts/playfair400italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/fonts/playfair400italic.woff2 -------------------------------------------------------------------------------- /frontend/public/fonts/playfair400latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/fonts/playfair400latin.woff2 -------------------------------------------------------------------------------- /frontend/public/fonts/playfairItalic800latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/public/fonts/playfairItalic800latin.woff2 -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | -------------------------------------------------------------------------------- /frontend/references/loadingDraco.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/references/loadingDraco.txt -------------------------------------------------------------------------------- /frontend/src/components/Animations/ButterflyString/ButterflyString.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ButterflyString/ButterflyString.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ButterflyString/framerPresets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ButterflyString/framerPresets.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ButterflyString/styled/LetterWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ButterflyString/styled/LetterWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ButterflyString/styled/TextWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ButterflyString/styled/TextWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ButterflyString/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ButterflyString/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ButterflyWithKey/ButterflyWithKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ButterflyWithKey/ButterflyWithKey.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ButterflyWithKey/framerPresets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ButterflyWithKey/framerPresets.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ButterflyWithKey/styled/LetterWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ButterflyWithKey/styled/LetterWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ButterflyWithKey/styled/TextWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ButterflyWithKey/styled/TextWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ButterflyWithKey/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ButterflyWithKey/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/Parallax/Parallax.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/Parallax/Parallax.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/Parallax/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/Parallax/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/Parallax/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/Parallax/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/components/Animations/ParallaxScroll/ParallaxScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ParallaxScroll/ParallaxScroll.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ParallaxScroll/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ParallaxScroll/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ReplaceItem/ReplaceItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ReplaceItem/ReplaceItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ReplaceItem/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ReplaceItem/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ReplaceItem/styled/DefaultItemWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ReplaceItem/styled/DefaultItemWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ReplaceItem/styled/FloatItemWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ReplaceItem/styled/FloatItemWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/ReplaceItem/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/ReplaceItem/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/RevealButterflyString/framerPresets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/RevealButterflyString/framerPresets.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/RevealButterflyString/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/RevealButterflyString/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/RevealItem/RevealItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/RevealItem/RevealItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/RevealItem/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/RevealItem/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/RevealItem/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/RevealItem/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/RevealString/RevealString.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/RevealString/RevealString.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/RevealString/styled/LetterContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/RevealString/styled/LetterContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/RevealString/styled/LetterWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/RevealString/styled/LetterWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/RevealString/styled/LettersContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/RevealString/styled/LettersContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/RevealString/styled/WordWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/RevealString/styled/WordWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideIn/SlideIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideIn/SlideIn.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideIn/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideIn/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideItemWithKey/SlideItemWithKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideItemWithKey/SlideItemWithKey.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideItemWithKey/framerPresets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideItemWithKey/framerPresets.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideItemWithKey/styled/RevealWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideItemWithKey/styled/RevealWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideItemWithKey/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideItemWithKey/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideTextWithKey/SlideTextWithKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideTextWithKey/SlideTextWithKey.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideTextWithKey/framerPresets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideTextWithKey/framerPresets.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideTextWithKey/styled/WordWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideTextWithKey/styled/WordWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideTextWithKey/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideTextWithKey/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideWithKey/SlideWithKey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideWithKey/SlideWithKey.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideWithKey/framerPresets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideWithKey/framerPresets.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideWithKey/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideWithKey/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideWithKey/styled/MeasureWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideWithKey/styled/MeasureWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideWithKey/styled/RevealWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideWithKey/styled/RevealWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/SlideWithKey/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/SlideWithKey/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Animations/framerTransitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Animations/framerTransitions.ts -------------------------------------------------------------------------------- /frontend/src/components/ArrowBtn/ArrowBtn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ArrowBtn/ArrowBtn.tsx -------------------------------------------------------------------------------- /frontend/src/components/ArrowBtn/styled/Circle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ArrowBtn/styled/Circle.tsx -------------------------------------------------------------------------------- /frontend/src/components/ArrowBtn/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ArrowBtn/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/ArrowBtn/styled/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ArrowBtn/styled/Text.tsx -------------------------------------------------------------------------------- /frontend/src/components/ArrowBtn/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ArrowBtn/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/BurgerIcon/BurgerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/BurgerIcon/BurgerIcon.tsx -------------------------------------------------------------------------------- /frontend/src/components/BurgerIcon/framerPresets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/BurgerIcon/framerPresets.ts -------------------------------------------------------------------------------- /frontend/src/components/BurgerIcon/styled/BarsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/BurgerIcon/styled/BarsWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/BurgerIcon/styled/CircleBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/BurgerIcon/styled/CircleBackground.tsx -------------------------------------------------------------------------------- /frontend/src/components/BurgerIcon/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/BurgerIcon/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/BurgerIcon/styled/MenuBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/BurgerIcon/styled/MenuBar.tsx -------------------------------------------------------------------------------- /frontend/src/components/BurgerIcon/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/BurgerIcon/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Buttons/BlobButton/BlobButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Buttons/BlobButton/BlobButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/Buttons/BlobButton/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Buttons/BlobButton/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Buttons/DefaultButton/DefaultButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Buttons/DefaultButton/DefaultButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/Buttons/DefaultButton/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Buttons/DefaultButton/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/Carousel.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/components/NavArrowButton/images/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/components/NavArrowButton/images/arrow.svg -------------------------------------------------------------------------------- /frontend/src/components/Carousel/components/NavArrowButton/styled/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/components/NavArrowButton/styled/Button.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/components/NavDots/NavDots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/components/NavDots/NavDots.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/components/NavDots/styled/Dot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/components/NavDots/styled/Dot.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/components/NavDots/styled/DotContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/components/NavDots/styled/DotContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/components/NavDots/styled/DotsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/components/NavDots/styled/DotsWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/components/NavDots/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/components/NavDots/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/components/PropsItem/PropsItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/components/PropsItem/PropsItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/constants.ts: -------------------------------------------------------------------------------- 1 | export const SWIPIE_CONFIDENCE_THRESHOLD = 10000; 2 | -------------------------------------------------------------------------------- /frontend/src/components/Carousel/framerPresets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/framerPresets.ts -------------------------------------------------------------------------------- /frontend/src/components/Carousel/styled/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/styled/Item.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/styled/ItemsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/styled/ItemsContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/styled/NavArrowNext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/styled/NavArrowNext.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/styled/NavArrowPrev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/styled/NavArrowPrev.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/styled/NavDotsBottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/styled/NavDotsBottom.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Carousel/utils/swipePower.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/utils/swipePower.ts -------------------------------------------------------------------------------- /frontend/src/components/Carousel/utils/wrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Carousel/utils/wrap.ts -------------------------------------------------------------------------------- /frontend/src/components/CarouselItem/CarouselItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/CarouselItem/CarouselItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/CarouselItem/framerPresets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/CarouselItem/framerPresets.tsx -------------------------------------------------------------------------------- /frontend/src/components/CarouselItem/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/CarouselItem/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/CarouselItem/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/CarouselItem/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/CustomContainer/CustomContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/CustomContainer/CustomContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/CustomContainer/styled/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/CustomContainer/styled/Container.tsx -------------------------------------------------------------------------------- /frontend/src/components/CustomContainer/styled/ContainerWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/CustomContainer/styled/ContainerWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/CustomContainer/styled/CoverWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/CustomContainer/styled/CoverWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/CustomContainer/utils/customContainers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/CustomContainer/utils/customContainers.ts -------------------------------------------------------------------------------- /frontend/src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /frontend/src/components/Footer/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Footer/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Footer/styled/FooterContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Footer/styled/FooterContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/Footer/styled/FooterLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Footer/styled/FooterLink.tsx -------------------------------------------------------------------------------- /frontend/src/components/Footer/styled/InfoText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Footer/styled/InfoText.tsx -------------------------------------------------------------------------------- /frontend/src/components/HoverWrapper/HoverWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/HoverWrapper/HoverWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/HoverWrapper/styled/AnimationWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/HoverWrapper/styled/AnimationWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/HoverWrapper/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/HoverWrapper/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/InfiniteTimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/InfiniteTimeline.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/constants.ts -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/hooks/useApplyScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/hooks/useApplyScroll.ts -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/hooks/useMouseWheelEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/hooks/useMouseWheelEvents.ts -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/hooks/useOnResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/hooks/useOnResize.ts -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/hooks/useProgress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/hooks/useProgress.ts -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/hooks/useSeekTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/hooks/useSeekTo.ts -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/hooks/useTouchEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/hooks/useTouchEvents.ts -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/styled/TimelineItemsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/styled/TimelineItemsWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/utils/calculateProgress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/utils/calculateProgress.ts -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/utils/getPaddedOffset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/utils/getPaddedOffset.ts -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimeline/utils/retrieveCurrentOffset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimeline/utils/retrieveCurrentOffset.ts -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimelineItem/InfiniteTimelineItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimelineItem/InfiniteTimelineItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimelineItem/styled/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimelineItem/styled/Item.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimelineItem/styled/ItemWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimelineItem/styled/ItemWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimelineItem/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimelineItem/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimelineItem/utils/modHorizontal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimelineItem/utils/modHorizontal.ts -------------------------------------------------------------------------------- /frontend/src/components/InfiniteTimelineItem/utils/modVertical.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfiniteTimelineItem/utils/modVertical.ts -------------------------------------------------------------------------------- /frontend/src/components/InfoFooter/InfoFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfoFooter/InfoFooter.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfoFooter/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfoFooter/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfoFooter/styled/LinkComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfoFooter/styled/LinkComp.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfoFooter/styled/Name.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfoFooter/styled/Name.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfoFooter/styled/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfoFooter/styled/Text.tsx -------------------------------------------------------------------------------- /frontend/src/components/InfoFooter/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/InfoFooter/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/LanguageSelector/LanguageSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/LanguageSelector/LanguageSelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/LanguageSelector/images/dropArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/LanguageSelector/images/dropArrow.svg -------------------------------------------------------------------------------- /frontend/src/components/LanguageSelector/styled/Option.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/LanguageSelector/styled/Option.tsx -------------------------------------------------------------------------------- /frontend/src/components/LanguageSelector/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/LanguageSelector/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Layout/Layout.tsx -------------------------------------------------------------------------------- /frontend/src/components/Layout/styled/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Layout/styled/BackButton.tsx -------------------------------------------------------------------------------- /frontend/src/components/Layout/styled/BackWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Layout/styled/BackWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Layout/styled/InfoFooterComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Layout/styled/InfoFooterComp.tsx -------------------------------------------------------------------------------- /frontend/src/components/Layout/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Layout/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/MenuItem/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/MenuItem/MenuItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/MenuItem/styled/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/MenuItem/styled/Image.tsx -------------------------------------------------------------------------------- /frontend/src/components/MenuItem/styled/ImageContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/MenuItem/styled/ImageContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/MenuItem/styled/ImageWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/MenuItem/styled/ImageWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/MenuItem/styled/LinkItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/MenuItem/styled/LinkItem.tsx -------------------------------------------------------------------------------- /frontend/src/components/MenuItem/styled/Underline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/MenuItem/styled/Underline.tsx -------------------------------------------------------------------------------- /frontend/src/components/MenuItem/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/MenuItem/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /frontend/src/components/Modal/images/closeicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Modal/images/closeicon.svg -------------------------------------------------------------------------------- /frontend/src/components/Modal/styled/CloseButtonContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Modal/styled/CloseButtonContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/Modal/styled/CloseButtonImg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Modal/styled/CloseButtonImg.tsx -------------------------------------------------------------------------------- /frontend/src/components/Modal/styled/ModalBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Modal/styled/ModalBackground.tsx -------------------------------------------------------------------------------- /frontend/src/components/Modal/styled/ModalContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Modal/styled/ModalContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Modal/styled/ModalWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Modal/styled/ModalWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Modal/styled/OpacityWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Modal/styled/OpacityWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Modal/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Modal/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/PageWrapper/PageWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/PageWrapper/PageWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/PageWrapper/framerPresets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/PageWrapper/framerPresets.ts -------------------------------------------------------------------------------- /frontend/src/components/PageWrapper/styled/PageContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/PageWrapper/styled/PageContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/PageWrapper/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/PageWrapper/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/PageWrapper/utils/retrieveScrollPosition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/PageWrapper/utils/retrieveScrollPosition.tsx -------------------------------------------------------------------------------- /frontend/src/components/PageWrapper/utils/saveScrollPosition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/PageWrapper/utils/saveScrollPosition.tsx -------------------------------------------------------------------------------- /frontend/src/components/PreloadImage/PreloadImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/PreloadImage/PreloadImage.tsx -------------------------------------------------------------------------------- /frontend/src/components/PreloadImage/styled/ImageWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/PreloadImage/styled/ImageWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/RichText/RichText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/RichText/RichText.tsx -------------------------------------------------------------------------------- /frontend/src/components/RichText/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/RichText/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Social/Social.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Social/Social.tsx -------------------------------------------------------------------------------- /frontend/src/components/Social/styled/Anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Social/styled/Anchor.tsx -------------------------------------------------------------------------------- /frontend/src/components/Social/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Social/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Social/styled/Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Social/styled/Description.tsx -------------------------------------------------------------------------------- /frontend/src/components/Social/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Social/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/SocialsBox/SocialsBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/SocialsBox/SocialsBox.tsx -------------------------------------------------------------------------------- /frontend/src/components/SocialsBox/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/SocialsBox/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/SocialsBox/styled/SocialComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/SocialsBox/styled/SocialComp.tsx -------------------------------------------------------------------------------- /frontend/src/components/SocialsBox/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/SocialsBox/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/ThemeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/ThemeSelector.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/components/Cloud/Cloud.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/components/Cloud/Cloud.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/components/Cloud/images/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/components/Cloud/images/cloud.svg -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/components/Cloud/styled/CloudImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/components/Cloud/styled/CloudImage.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/components/Cloud/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/components/Cloud/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/components/Star/Star.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/components/Star/Star.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/components/Star/styled/StarImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/components/Star/styled/StarImage.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/components/Star/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/components/Star/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/constants.ts -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/framerPresets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/framerPresets.ts -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/images/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/images/cloud.svg -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/styled/BackgroundWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/styled/BackgroundWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/styled/Ball.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/styled/Ball.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/styled/BallCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/styled/BallCircle.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/styled/BallCircleWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/styled/BallCircleWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/styled/CloudsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/styled/CloudsWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/styled/DayWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/styled/DayWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/styled/Glow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/styled/Glow.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/styled/NightWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/styled/NightWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/styled/ShootingStarsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/styled/ShootingStarsWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/styled/StarsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/styled/StarsWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/styled/ToggleSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/styled/ToggleSwitch.tsx -------------------------------------------------------------------------------- /frontend/src/components/ThemeSelector/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/ThemeSelector/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/UnderlineLink/UnderlineLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/UnderlineLink/UnderlineLink.tsx -------------------------------------------------------------------------------- /frontend/src/components/UnderlineLink/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/UnderlineLink/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/UnderlineLink/styled/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/UnderlineLink/styled/Text.tsx -------------------------------------------------------------------------------- /frontend/src/components/UnderlineLink/styled/Underline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/UnderlineLink/styled/Underline.tsx -------------------------------------------------------------------------------- /frontend/src/components/UnderlineLink/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/UnderlineLink/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Video/Video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Video/Video.tsx -------------------------------------------------------------------------------- /frontend/src/components/Video/styled/IFrame.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Video/styled/IFrame.tsx -------------------------------------------------------------------------------- /frontend/src/components/Video/styled/SourceVideo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Video/styled/SourceVideo.tsx -------------------------------------------------------------------------------- /frontend/src/components/Video/styled/VideoContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Video/styled/VideoContainer.tsx -------------------------------------------------------------------------------- /frontend/src/components/Video/styled/VideoCover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Video/styled/VideoCover.tsx -------------------------------------------------------------------------------- /frontend/src/components/Video/styled/VideoWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Video/styled/VideoWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/components/Video/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/components/Video/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/BubblesPage/BubblesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/BubblesPage/BubblesPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/BubblesPage/functions/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/BubblesPage/functions/app.ts -------------------------------------------------------------------------------- /frontend/src/containers/BubblesPage/functions/canvasSketch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/BubblesPage/functions/canvasSketch.tsx -------------------------------------------------------------------------------- /frontend/src/containers/BubblesPage/functions/mouseMove/mouseMove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/BubblesPage/functions/mouseMove/mouseMove.ts -------------------------------------------------------------------------------- /frontend/src/containers/BubblesPage/functions/mouseMove/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/BubblesPage/functions/mouseMove/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/BubblesPage/functions/touchTexture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/BubblesPage/functions/touchTexture.tsx -------------------------------------------------------------------------------- /frontend/src/containers/BubblesPage/functions/utils/easings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/BubblesPage/functions/utils/easings.ts -------------------------------------------------------------------------------- /frontend/src/containers/BubblesPage/functions/utils/getRandBetween.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/BubblesPage/functions/utils/getRandBetween.ts -------------------------------------------------------------------------------- /frontend/src/containers/BubblesPage/functions/utils/wrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/BubblesPage/functions/utils/wrap.ts -------------------------------------------------------------------------------- /frontend/src/containers/BubblesPage/styled/CanvasWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/BubblesPage/styled/CanvasWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/BubblesPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/BubblesPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/2D/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/2D/App.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/2D/MouseCircle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/2D/MouseCircle.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/2D/Singletons/MouseMove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/2D/Singletons/MouseMove.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/2D/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/2D/types.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/2D/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/2D/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/CardLeaderPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/CardLeaderPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/App.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/Components/CardItem3D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/Components/CardItem3D.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/Components/MediaObject3D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/Components/MediaObject3D.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/Scenes/CardScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/Scenes/CardScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/Scenes/FollowScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/Scenes/FollowScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/Scenes/InteractiveScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/Scenes/InteractiveScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/Singletons/MouseMove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/Singletons/MouseMove.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/Singletons/Scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/Singletons/Scroll.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/Utility/Preloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/Utility/Preloader.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/shaders/media/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/shaders/media/fragment.glsl -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/shaders/media/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/shaders/media/vertex.glsl -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/types.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/utils/getRand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/utils/getRand.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/classes/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/classes/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/styled/CanvasWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/styled/CanvasWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/styled/Slider/CanvasCircleWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/styled/Slider/CanvasCircleWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/styled/Slider/SignContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/styled/Slider/SignContainer.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/styled/Slider/SignSvgComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/styled/Slider/SignSvgComp.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/styled/Slider/SignWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/styled/Slider/SignWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/styled/Slider/SliderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/styled/Slider/SliderItem.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/styled/Slider/SliderItemChild.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/styled/Slider/SliderItemChild.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/styled/Slider/SliderWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/styled/Slider/SliderWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/CardLeaderPage/svg/SignSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/CardLeaderPage/svg/SignSvg.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/ConstellationPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/ConstellationPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/App.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/Background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/Background.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/CanvasSketch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/CanvasSketch.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/MouseCircle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/MouseCircle.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/MouseMove/MouseMove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/MouseMove/MouseMove.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/MouseMove/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/MouseMove/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/Particle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/Particle.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/constants.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/types.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/utils/easings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/utils/easings.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/utils/getLength.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/utils/getLength.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/utils/getRandBetween.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/utils/getRandBetween.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/appClasses/utils/wrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/appClasses/utils/wrap.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/styled/CanvasWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/styled/CanvasWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ConstellationPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ConstellationPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ErrorPage/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ErrorPage/ErrorPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ErrorPage/styled/CodeWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ErrorPage/styled/CodeWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ErrorPage/styled/ErrorCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ErrorPage/styled/ErrorCode.tsx -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/FlowPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/FlowPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/components/FlowApp/FlowApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/components/FlowApp/FlowApp.tsx -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/components/FlowApp/functions/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/components/FlowApp/functions/app.ts -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/components/FlowApp/functions/imagePlanes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/components/FlowApp/functions/imagePlanes.ts -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/components/FlowApp/functions/imageSlider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/components/FlowApp/functions/imageSlider.ts -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/components/FlowApp/functions/lights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/components/FlowApp/functions/lights.ts -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/components/FlowApp/functions/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/components/FlowApp/functions/media.ts -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/components/FlowApp/functions/mediaSlide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/components/FlowApp/functions/mediaSlide.ts -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/components/FlowApp/functions/world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/components/FlowApp/functions/world.ts -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/components/FlowApp/styled/Cover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/components/FlowApp/styled/Cover.tsx -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/components/FlowApp/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/components/FlowApp/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/FlowPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/FlowPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/GlobePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/GlobePage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/components/GlobeApp/GlobeApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/components/GlobeApp/GlobeApp.tsx -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/components/GlobeApp/constants.ts: -------------------------------------------------------------------------------- 1 | export const ZOOM_IN_THRESHOLD = 900; 2 | -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/components/GlobeApp/functions/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/components/GlobeApp/functions/app.ts -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/components/GlobeApp/functions/bullet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/components/GlobeApp/functions/bullet.ts -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/components/GlobeApp/functions/curve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/components/GlobeApp/functions/curve.ts -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/components/GlobeApp/functions/dots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/components/GlobeApp/functions/dots.ts -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/components/GlobeApp/functions/globe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/components/GlobeApp/functions/globe.ts -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/components/GlobeApp/functions/lights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/components/GlobeApp/functions/lights.ts -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/components/GlobeApp/functions/world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/components/GlobeApp/functions/world.ts -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/components/GlobeApp/styled/Cover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/components/GlobeApp/styled/Cover.tsx -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/components/GlobeApp/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/components/GlobeApp/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/components/GlobeApp/styled/zoom/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/components/GlobeApp/styled/zoom/Text.tsx -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/GlobePage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/GlobePage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/IndexPage/IndexPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/IndexPage/IndexPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/IndexPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/IndexPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/IndexPage/styled/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/IndexPage/styled/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/IndexPage/styled/Description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/IndexPage/styled/Description.tsx -------------------------------------------------------------------------------- /frontend/src/containers/IndexPage/styled/InfoWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/IndexPage/styled/InfoWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/IndexPage/styled/LinkComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/IndexPage/styled/LinkComp.tsx -------------------------------------------------------------------------------- /frontend/src/containers/IndexPage/styled/LinksWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/IndexPage/styled/LinksWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/IndexPage/styled/MenuItemComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/IndexPage/styled/MenuItemComp.tsx -------------------------------------------------------------------------------- /frontend/src/containers/IndexPage/styled/Name.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/IndexPage/styled/Name.tsx -------------------------------------------------------------------------------- /frontend/src/containers/IndexPage/styled/ProjectsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/IndexPage/styled/ProjectsWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/IndexPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/IndexPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/MotionCirclePage/MotionCirclePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/MotionCirclePage/MotionCirclePage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/MotionCirclePage/functions/Particle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/MotionCirclePage/functions/Particle.ts -------------------------------------------------------------------------------- /frontend/src/containers/MotionCirclePage/functions/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/MotionCirclePage/functions/app.ts -------------------------------------------------------------------------------- /frontend/src/containers/MotionCirclePage/functions/canvasSketch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/MotionCirclePage/functions/canvasSketch.ts -------------------------------------------------------------------------------- /frontend/src/containers/MotionCirclePage/functions/mouseMove/mouseMove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/MotionCirclePage/functions/mouseMove/mouseMove.ts -------------------------------------------------------------------------------- /frontend/src/containers/MotionCirclePage/functions/mouseMove/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/MotionCirclePage/functions/mouseMove/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/MotionCirclePage/functions/touchTexture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/MotionCirclePage/functions/touchTexture.tsx -------------------------------------------------------------------------------- /frontend/src/containers/MotionCirclePage/functions/utils/easings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/MotionCirclePage/functions/utils/easings.ts -------------------------------------------------------------------------------- /frontend/src/containers/MotionCirclePage/functions/utils/getRandBetween.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/MotionCirclePage/functions/utils/getRandBetween.ts -------------------------------------------------------------------------------- /frontend/src/containers/MotionCirclePage/functions/utils/wrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/MotionCirclePage/functions/utils/wrap.ts -------------------------------------------------------------------------------- /frontend/src/containers/MotionCirclePage/styled/CanvasWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/MotionCirclePage/styled/CanvasWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/MotionCirclePage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/MotionCirclePage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/OrbitGalleryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/OrbitGalleryPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/App.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/Components/GalleryItem3D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/Components/GalleryItem3D.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/Components/MediaObject3D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/Components/MediaObject3D.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/HTMLComponents/Title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/HTMLComponents/Title.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/Scenes/GalleryScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/Scenes/GalleryScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/Scenes/InteractiveScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/Scenes/InteractiveScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/Scenes/OrbitScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/Scenes/OrbitScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/Singletons/MouseMove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/Singletons/MouseMove.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/Singletons/Scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/Singletons/Scroll.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/Utility/Preloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/Utility/Preloader.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/types.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/utils/getRand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/utils/getRand.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/classes/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/classes/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/styled/CanvasWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/styled/CanvasWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/styled/Gallery/GalleryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/styled/Gallery/GalleryItem.tsx -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/styled/Gallery/GalleryWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/styled/Gallery/GalleryWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/styled/Gallery/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/styled/Gallery/Image.tsx -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/styled/Gallery/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/styled/Gallery/Text.tsx -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/styled/Gallery/TextWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/styled/Gallery/TextWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/styled/Gallery/TextsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/styled/Gallery/TextsContainer.tsx -------------------------------------------------------------------------------- /frontend/src/containers/OrbitGalleryPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/OrbitGalleryPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/ParticlesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/ParticlesPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/components/App/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/components/App/App.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/components/App/functions/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/components/App/functions/app.ts -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/components/App/functions/lights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/components/App/functions/lights.ts -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/components/App/functions/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/components/App/functions/model.ts -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/components/App/functions/utils/wrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/components/App/functions/utils/wrap.ts -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/components/App/functions/world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/components/App/functions/world.ts -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/components/App/styled/Cover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/components/App/styled/Cover.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/components/App/styled/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/components/App/styled/Text.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/components/App/styled/TextWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/components/App/styled/TextWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/components/App/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/components/App/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/ParticlesPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/ParticlesPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/PlaygroundGalleryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/PlaygroundGalleryPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/appState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/appState.ts -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/classes/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/classes/App.ts -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/classes/Scenes/ItemScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/classes/Scenes/ItemScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/classes/Scenes/SlideScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/classes/Scenes/SlideScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/classes/Singletons/Scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/classes/Singletons/Scroll.ts -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/classes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/classes/types.ts -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/classes/utils/getRand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/classes/utils/getRand.ts -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/classes/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/classes/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/classes/utils/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/classes/utils/text.ts -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/PlaygroundGalleryPage/hooks/useMediaPreload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/PlaygroundGalleryPage/hooks/useMediaPreload.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/SpiralPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/SpiralPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/App.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/InteractiveObject3D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/InteractiveObject3D.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/InteractiveScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/InteractiveScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/IntersectiveBackground3D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/IntersectiveBackground3D.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/MouseMove/MouseMove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/MouseMove/MouseMove.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/MouseMove/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/MouseMove/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/Scroll/Scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/Scroll/Scroll.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/Scroll/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/Scroll/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/SpiralScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/SpiralScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/SpiralSpline3D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/SpiralSpline3D.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/StoryItem3D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/StoryItem3D.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/StoryScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/StoryScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/shaders/dots/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/shaders/dots/fragment.glsl -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/shaders/dots/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/shaders/dots/vertex.glsl -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/shaders/storyItem/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/shaders/storyItem/vertex.glsl -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/types.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/utils/getRand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/utils/getRand.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/classes/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/classes/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/styled/CanvasWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/styled/CanvasWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/styled/HeadingWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/styled/HeadingWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/styled/Inspired.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/styled/Inspired.tsx -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/styled/SmallText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/styled/SmallText.tsx -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/styled/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/styled/Text.tsx -------------------------------------------------------------------------------- /frontend/src/containers/SpiralPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/SpiralPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/StackPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/StackPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/App.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/Components/CardItem3D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/Components/CardItem3D.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/Components/MediaObject3D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/Components/MediaObject3D.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/Scenes/InteractiveScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/Scenes/InteractiveScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/Scenes/ItemScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/Scenes/ItemScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/Scenes/StackScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/Scenes/StackScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/Singletons/MouseMove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/Singletons/MouseMove.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/Singletons/Scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/Singletons/Scroll.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/Utility/Preloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/Utility/Preloader.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/shaders/media/fragment.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/shaders/media/fragment.glsl -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/shaders/media/vertex.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/shaders/media/vertex.glsl -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/types.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/utils/getRand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/utils/getRand.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/classes/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/classes/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/CanvasWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/CanvasWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/stack/Border.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/stack/Border.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/stack/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/stack/Button.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/stack/ButtonContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/stack/ButtonContainer.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/stack/ButtonsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/stack/ButtonsWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/stack/ContentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/stack/ContentWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/stack/ForkSvgComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/stack/ForkSvgComp.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/stack/ForkWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/stack/ForkWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/stack/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/stack/Image.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/stack/ImageWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/stack/ImageWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/stack/KnifeSvgComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/stack/KnifeSvgComp.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/stack/KnifeWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/stack/KnifeWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/styled/stack/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/styled/stack/Text.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/svg/ForkSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/svg/ForkSvg.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackPage/svg/KnifeSvg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackPage/svg/KnifeSvg.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackTowerPage/StackTowerPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackTowerPage/StackTowerPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackTowerPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackTowerPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/StackTowerPage/styled/CanvasWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackTowerPage/styled/CanvasWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StackTowerPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StackTowerPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/StarShowerPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/StarShowerPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/App.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/Background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/Background.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/BackgroundStar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/BackgroundStar.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/BigStar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/BigStar.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/CanvasSketch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/CanvasSketch.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/Catapult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/Catapult.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/MiniStar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/MiniStar.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/MouseMove/MouseMove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/MouseMove/MouseMove.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/MouseMove/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/MouseMove/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/Scroll/Scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/Scroll/Scroll.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/Scroll/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/Scroll/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/Star.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/Star.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/types.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/utils/easings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/utils/easings.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/utils/getLength.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/utils/getLength.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/utils/getRandBetween.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/utils/getRandBetween.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/appClasses/utils/wrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/appClasses/utils/wrap.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/styled/CanvasWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/styled/CanvasWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/styled/InfoBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/styled/InfoBackground.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/styled/InfoWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/styled/InfoWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/styled/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/styled/Text.tsx -------------------------------------------------------------------------------- /frontend/src/containers/StarShowerPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/StarShowerPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/TestPage/TestPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/TestPage/TestPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/TestPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/TestPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/TestPage/styled/LinkWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/TestPage/styled/LinkWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/TestPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/TestPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/UniqueCollectionPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/UniqueCollectionPage.tsx -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/classes/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/classes/App.ts -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/classes/Scenes/ItemScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/classes/Scenes/ItemScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/classes/Scenes/SlideScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/classes/Scenes/SlideScene.ts -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/classes/Singletons/Scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/classes/Singletons/Scroll.ts -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/classes/Utility/Preloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/classes/Utility/Preloader.ts -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/classes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/classes/types.ts -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/classes/utils/getRand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/classes/utils/getRand.ts -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/classes/utils/lerp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/classes/utils/lerp.ts -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/classes/utils/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/classes/utils/text.ts -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/data.ts -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/styled/CanvasWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/styled/CanvasWrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/styled/Wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/styled/Wrapper.tsx -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/styled/collection/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/styled/collection/Image.tsx -------------------------------------------------------------------------------- /frontend/src/containers/UniqueCollectionPage/styled/collection/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/containers/UniqueCollectionPage/styled/collection/Title.tsx -------------------------------------------------------------------------------- /frontend/src/context/ExampleContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/context/ExampleContext.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/useBreakpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/hooks/useBreakpoint.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useClickOutside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/hooks/useClickOutside.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useDisableOverscroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/hooks/useDisableOverscroll.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useDisableScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/hooks/useDisableScroll.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useElementSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/hooks/useElementSize.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useHover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/hooks/useHover.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useImagePreload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/hooks/useImagePreload.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/hooks/useModal.tsx -------------------------------------------------------------------------------- /frontend/src/hooks/useScroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/hooks/useScroll.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useTouch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/hooks/useTouch.ts -------------------------------------------------------------------------------- /frontend/src/hooks/useWindowSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/hooks/useWindowSize.ts -------------------------------------------------------------------------------- /frontend/src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/404.tsx -------------------------------------------------------------------------------- /frontend/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/_app.tsx -------------------------------------------------------------------------------- /frontend/src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/_document.tsx -------------------------------------------------------------------------------- /frontend/src/pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/_error.tsx -------------------------------------------------------------------------------- /frontend/src/pages/bubbles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/bubbles.tsx -------------------------------------------------------------------------------- /frontend/src/pages/card-leader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/card-leader.tsx -------------------------------------------------------------------------------- /frontend/src/pages/constellation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/constellation.tsx -------------------------------------------------------------------------------- /frontend/src/pages/flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/flow.tsx -------------------------------------------------------------------------------- /frontend/src/pages/globe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/globe.tsx -------------------------------------------------------------------------------- /frontend/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/index.tsx -------------------------------------------------------------------------------- /frontend/src/pages/motion-circle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/motion-circle.tsx -------------------------------------------------------------------------------- /frontend/src/pages/orbit-gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/orbit-gallery.tsx -------------------------------------------------------------------------------- /frontend/src/pages/particles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/particles.tsx -------------------------------------------------------------------------------- /frontend/src/pages/playground-gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/playground-gallery.tsx -------------------------------------------------------------------------------- /frontend/src/pages/spiral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/spiral.tsx -------------------------------------------------------------------------------- /frontend/src/pages/stack-tower.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/stack-tower.tsx -------------------------------------------------------------------------------- /frontend/src/pages/stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/stack.tsx -------------------------------------------------------------------------------- /frontend/src/pages/star-shower.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/star-shower.tsx -------------------------------------------------------------------------------- /frontend/src/pages/test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/test.tsx -------------------------------------------------------------------------------- /frontend/src/pages/unique-collection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/pages/unique-collection.tsx -------------------------------------------------------------------------------- /frontend/src/utils/functions/getCmsApiClient.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/functions/getCmsApiClient.tsx -------------------------------------------------------------------------------- /frontend/src/utils/functions/getElementSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/functions/getElementSize.ts -------------------------------------------------------------------------------- /frontend/src/utils/functions/getFrontHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/functions/getFrontHost.ts -------------------------------------------------------------------------------- /frontend/src/utils/functions/getIsrTimeout.tsx: -------------------------------------------------------------------------------- 1 | export const ISR_TIMEOUT = process.env.ENV === 'local' ? 3 : 50; 2 | -------------------------------------------------------------------------------- /frontend/src/utils/functions/isDev.ts: -------------------------------------------------------------------------------- 1 | export const isDev = () => { 2 | return process.env.NODE_ENV !== 'production'; 3 | }; 4 | -------------------------------------------------------------------------------- /frontend/src/utils/functions/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/functions/popup.ts -------------------------------------------------------------------------------- /frontend/src/utils/functions/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/functions/share.ts -------------------------------------------------------------------------------- /frontend/src/utils/functions/sliceSlash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/functions/sliceSlash.tsx -------------------------------------------------------------------------------- /frontend/src/utils/functions/strapi/getAllProjectsData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/functions/strapi/getAllProjectsData.ts -------------------------------------------------------------------------------- /frontend/src/utils/functions/strapi/getProjectData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/functions/strapi/getProjectData.ts -------------------------------------------------------------------------------- /frontend/src/utils/globalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/globalState.ts -------------------------------------------------------------------------------- /frontend/src/utils/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/i18n.ts -------------------------------------------------------------------------------- /frontend/src/utils/responsive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/responsive.ts -------------------------------------------------------------------------------- /frontend/src/utils/seo/GoogleAnalytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/seo/GoogleAnalytics.tsx -------------------------------------------------------------------------------- /frontend/src/utils/seo/Head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/seo/Head.tsx -------------------------------------------------------------------------------- /frontend/src/utils/sharedValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/sharedValues.ts -------------------------------------------------------------------------------- /frontend/src/utils/styled/GlobalStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/styled/GlobalStyles.ts -------------------------------------------------------------------------------- /frontend/src/utils/styled/fontFace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/styled/fontFace.css -------------------------------------------------------------------------------- /frontend/src/utils/styled/shared/RichParagraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/styled/shared/RichParagraph.tsx -------------------------------------------------------------------------------- /frontend/src/utils/types/Link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/types/Link.ts -------------------------------------------------------------------------------- /frontend/src/utils/types/LocalizedHead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/types/LocalizedHead.ts -------------------------------------------------------------------------------- /frontend/src/utils/types/LocalizedText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/types/LocalizedText.ts -------------------------------------------------------------------------------- /frontend/src/utils/types/Media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/types/Media.ts -------------------------------------------------------------------------------- /frontend/src/utils/types/strapi/CreativeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/types/strapi/CreativeItem.ts -------------------------------------------------------------------------------- /frontend/src/utils/types/strapi/ProjectData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/src/utils/types/strapi/ProjectData.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michalzalobny/creativeprojects/HEAD/frontend/tsconfig.json --------------------------------------------------------------------------------