├── .babelrc ├── .github └── workflows │ ├── lighthouse.yml │ └── test.yml ├── .gitignore ├── .node-version ├── .prettierignore ├── .prettierrc.json ├── .storybook ├── main.js └── preview.js ├── README.md ├── README_EN.md ├── components ├── atomics │ ├── common │ │ ├── CloseButton │ │ │ ├── CloseButton.stories.tsx │ │ │ ├── CloseButton.tsx │ │ │ └── __tests__ │ │ │ │ ├── CloseButton.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ └── CloseButton.test.tsx.snap │ │ ├── CrossMark │ │ │ ├── CrossMark.stories.tsx │ │ │ └── CrossMark.tsx │ │ ├── H2.tsx │ │ ├── HamburgerMenu │ │ │ ├── HamburgerMenu.tsx │ │ │ └── __tests__ │ │ │ │ └── HamburgerMenu.test.tsx │ │ ├── Logo.tsx │ │ ├── Ring │ │ │ ├── Ring.stories.tsx │ │ │ └── Ring.tsx │ │ ├── SidewaysLines │ │ │ ├── SidewaysLines.stories.tsx │ │ │ └── SidewaysLines.tsx │ │ ├── Triangle │ │ │ ├── Triangle.stories.tsx │ │ │ └── Triangle.tsx │ │ └── YoutubeEmbedder │ │ │ ├── YoutubeEmbedder.stories.tsx │ │ │ └── YoutubeEmbedder.tsx │ ├── gatya │ │ └── SingleMagicCircle.tsx │ ├── home │ │ ├── BigSlideText.tsx │ │ └── SlideText.tsx │ └── info │ │ ├── EmbedBox │ │ ├── EmbedBox.stories.tsx │ │ └── EmbedBox.tsx │ │ ├── ThumbnailLink │ │ ├── ThumbnailLink.stories.tsx │ │ └── ThumbnailLink.tsx │ │ └── VTuberIcon │ │ ├── VTuberIcon.stories.tsx │ │ └── VTuberIcon.tsx ├── molecules │ ├── common │ │ └── ListRow │ │ │ ├── ListRow.tsx │ │ │ └── __tests__ │ │ │ ├── ListRow.test.tsx │ │ │ └── __snapshots__ │ │ │ └── ListRow.test.tsx.snap │ └── info │ │ └── VTuberIconAndName │ │ ├── VTuberIconAndName.stories.tsx │ │ └── VTuberIconAndName.tsx ├── organisms │ ├── common │ │ └── NavBar │ │ │ ├── ExpandCircle.tsx │ │ │ ├── NavBar.tsx │ │ │ ├── NavBarCrossMarks.tsx │ │ │ ├── NavBarLeft │ │ │ ├── CenterCircle │ │ │ │ ├── CenterCircle.stories.tsx │ │ │ │ ├── CenterCircle.tsx │ │ │ │ ├── OutsideRotateLine.tsx │ │ │ │ └── animationBaseDelay.ts │ │ │ ├── CloseAnimation.tsx │ │ │ ├── NavBarLeft.tsx │ │ │ └── ThreeSlashes │ │ │ │ ├── ThreeSlashes.stories.tsx │ │ │ │ └── ThreeSlashes.tsx │ │ │ ├── NavBarMenu │ │ │ └── NavBarMenu.tsx │ │ │ ├── NavBarRings.tsx │ │ │ ├── NavBarSidewaysLines.tsx │ │ │ ├── NavBarTop │ │ │ ├── NavBarTitle.tsx │ │ │ └── NavBarTop.tsx │ │ │ └── NavBarTriangles.tsx │ ├── gatya │ │ ├── AngeCard │ │ │ ├── AngeCard.tsx │ │ │ ├── AngeDescription.tsx │ │ │ ├── AngeImg.tsx │ │ │ ├── AngeName.tsx │ │ │ ├── SSRText.tsx │ │ │ ├── WhiteBG.tsx │ │ │ └── constants.ts │ │ ├── AngeTriangle.tsx │ │ ├── BlackTransition │ │ │ ├── BlackCircle.tsx │ │ │ └── BlackTransition.tsx │ │ ├── Flash │ │ │ ├── CircleFlash.tsx │ │ │ ├── Flash.tsx │ │ │ ├── HideScreenCircleFlash.tsx │ │ │ ├── LineFlash.tsx │ │ │ └── WhiteCircle.tsx │ │ ├── MagicCircle │ │ │ ├── MagicCircle.tsx │ │ │ └── SummonText.tsx │ │ ├── OmataseMattaText.tsx │ │ ├── ShowAngeCard.tsx │ │ ├── SmallMagicCircleMap │ │ │ ├── SmallMagicCircle.tsx │ │ │ └── SmallMagicCircleMap.tsx │ │ └── description │ │ │ └── DecriptionMain.tsx │ ├── home │ │ ├── CircleSlide │ │ │ ├── CircleMain.tsx │ │ │ ├── CircleSlide.tsx │ │ │ └── SlideController │ │ │ │ ├── SlideContent │ │ │ │ ├── NormalSlideContent │ │ │ │ │ ├── NormalOneSlideContent.tsx │ │ │ │ │ └── NormalSlideContent.tsx │ │ │ │ ├── SlideContent.tsx │ │ │ │ ├── SplitedSlideContent │ │ │ │ │ └── SplitedSlideContent.tsx │ │ │ │ ├── contentDatas │ │ │ │ │ ├── contentDataType.ts │ │ │ │ │ ├── meritAndDemeritData.tsx │ │ │ │ │ ├── sanbakaData.tsx │ │ │ │ │ └── streamingStyle.tsx │ │ │ │ └── slideAnimation.ts │ │ │ │ └── SlideController.tsx │ │ ├── HomeAnge │ │ │ ├── HomeAnge.tsx │ │ │ └── SpeechBubble.tsx │ │ ├── HomeBG.tsx │ │ └── OpenerFromStartAnimation.tsx │ ├── info │ │ ├── AngeDescriptionArea │ │ │ ├── AngeDescription.tsx │ │ │ ├── AngeDescriptionArea.tsx │ │ │ ├── AngeIcon.tsx │ │ │ ├── AngeProfile.tsx │ │ │ └── Background.tsx │ │ ├── AngeLinksArea │ │ │ └── AngeLinksArea.tsx │ │ ├── EmbedContentArea │ │ │ └── EmbedContentArea.tsx │ │ └── WhatIsSanbakaArea │ │ │ └── WhatIsSanbakaArea.tsx │ ├── license │ │ └── LicenseBlock.tsx │ └── startAnimation │ │ ├── Anime1 │ │ ├── Anime1.tsx │ │ ├── CenterCircles.tsx │ │ ├── CenterText.tsx │ │ ├── LeftBottomBlackCircle.tsx │ │ ├── LeftTopCircles.tsx │ │ ├── RightBottomCircle.tsx │ │ └── RightTopCircles.tsx │ │ ├── Anime2 │ │ ├── Anime2.tsx │ │ ├── BGBorderText.tsx │ │ ├── BottomWave.tsx │ │ ├── CenterWave.tsx │ │ ├── CloseAnime2.tsx │ │ ├── ExpandCircle.tsx │ │ ├── WaveBG.tsx │ │ └── WaveScreen.tsx │ │ ├── Anime3 │ │ ├── AngeImage.tsx │ │ ├── AngeName.tsx │ │ ├── Anime3.tsx │ │ ├── BGBorderText.tsx │ │ ├── CloseAnime3.tsx │ │ └── OpenAnime3.tsx │ │ ├── Loading │ │ ├── Loading.tsx │ │ ├── LoadingText.tsx │ │ └── ThreeSquares.tsx │ │ └── LoadingToAnime1 │ │ ├── AnimateSquare.tsx │ │ ├── BackgroundAnimation.tsx │ │ ├── LoadingToAnime1.tsx │ │ └── animationOrder.ts └── templates │ ├── CSR.tsx │ └── PageWrapper.tsx ├── constants ├── breakpoints.ts ├── colors.ts ├── cssProps.ts ├── gatya │ ├── animation_order.ts │ ├── omataseMattaSetting.ts │ └── zindex.ts ├── home │ └── zindex.ts └── zindex.ts ├── hooks ├── useAnimationRestarter.tsx ├── useDidMount.ts └── useIntersectionObserver.ts ├── index.d.ts ├── jest.config.js ├── lighthouserc.js ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── gatya.tsx ├── gatya │ └── description.tsx ├── index.tsx ├── info.tsx ├── license.tsx ├── ogp.tsx └── startanimation.tsx ├── public ├── favicons │ ├── android-chrome-192x192.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-150x150.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── imgs │ ├── ange-basic.png │ ├── ange-doctor.png │ ├── common │ │ ├── github-logo.png │ │ └── nijisanji-logo.png │ ├── gatya │ │ ├── ange-hey.png │ │ ├── ange-light-dress.png │ │ ├── fourth_in.png │ │ ├── most_in.png │ │ ├── second_in.png │ │ └── third_in.png │ ├── info │ │ ├── mashmellow-logo.png │ │ ├── nijisanji-wiki.png │ │ ├── rectangle.png │ │ └── twitter-logo.png │ ├── inui-toko.png │ ├── ogp.png │ └── rize-heruesta.png ├── load-adobe-fonts.js └── svgs │ ├── common │ ├── ange_triangle_sharp.svg │ ├── black_triangle.svg │ ├── one_black_circle.svg │ ├── one_yellow_circle.svg │ ├── red-homeIcon.svg │ ├── red-infoIcon.svg │ ├── red-licenseIcon.svg │ ├── red-presentIcon.svg │ ├── red_triangle.svg │ ├── two_yellow_two_red_circle.svg │ ├── white-homeIcon.svg │ ├── white-infoIcon.svg │ ├── white-licenseIcon.svg │ ├── white-presentIcon.svg │ ├── white_triangle.svg │ └── yellow_triangle.svg │ ├── gatya │ ├── ange_triangle.svg │ ├── flash_line.svg │ ├── fourth_in.svg │ ├── most_in.svg │ ├── red_circle.svg │ ├── second_in.svg │ ├── summon.svg │ ├── third_in.svg │ └── white_circle.svg │ ├── home │ ├── logo.svg │ └── red-logo.svg │ └── startanimation │ ├── black-wave.svg │ ├── red-wave.svg │ ├── wave.svg │ └── yellow-wave.svg ├── redux ├── modules │ ├── isStartSummonAnimation.ts │ ├── sizes.ts │ ├── sounds.ts │ ├── startAnimation.ts │ └── themes.ts └── store.ts ├── renovate.json ├── stories ├── Button.stories.tsx ├── Button.tsx ├── Header.stories.tsx ├── Header.tsx ├── Introduction.stories.mdx ├── Page.stories.tsx ├── Page.tsx ├── assets │ ├── code-brackets.svg │ ├── colors.svg │ ├── comments.svg │ ├── direction.svg │ ├── flow.svg │ ├── plugin.svg │ ├── repo.svg │ └── stackalt.svg ├── button.css ├── header.css └── page.css ├── styles ├── commonAnimation.ts └── global.scss ├── systems ├── getRandomInt.ts └── sizeTypeJudge.ts ├── tsconfig.json ├── typing ├── AnimationProps.ts ├── Color.ts ├── LocationXY.ts └── SizeType.ts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/lighthouse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/.github/workflows/lighthouse.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | yarn-error.log 4 | .DS_Store -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 15.9.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "endOfLine": "lf" 3 | } 4 | -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- 1 | export const parameters = { 2 | actions: { argTypesRegex: "^on[A-Z].*" }, 3 | }; 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/README_EN.md -------------------------------------------------------------------------------- /components/atomics/common/CloseButton/CloseButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/CloseButton/CloseButton.stories.tsx -------------------------------------------------------------------------------- /components/atomics/common/CloseButton/CloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/CloseButton/CloseButton.tsx -------------------------------------------------------------------------------- /components/atomics/common/CloseButton/__tests__/CloseButton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/CloseButton/__tests__/CloseButton.test.tsx -------------------------------------------------------------------------------- /components/atomics/common/CloseButton/__tests__/__snapshots__/CloseButton.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/CloseButton/__tests__/__snapshots__/CloseButton.test.tsx.snap -------------------------------------------------------------------------------- /components/atomics/common/CrossMark/CrossMark.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/CrossMark/CrossMark.stories.tsx -------------------------------------------------------------------------------- /components/atomics/common/CrossMark/CrossMark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/CrossMark/CrossMark.tsx -------------------------------------------------------------------------------- /components/atomics/common/H2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/H2.tsx -------------------------------------------------------------------------------- /components/atomics/common/HamburgerMenu/HamburgerMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/HamburgerMenu/HamburgerMenu.tsx -------------------------------------------------------------------------------- /components/atomics/common/HamburgerMenu/__tests__/HamburgerMenu.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/HamburgerMenu/__tests__/HamburgerMenu.test.tsx -------------------------------------------------------------------------------- /components/atomics/common/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/Logo.tsx -------------------------------------------------------------------------------- /components/atomics/common/Ring/Ring.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/Ring/Ring.stories.tsx -------------------------------------------------------------------------------- /components/atomics/common/Ring/Ring.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/Ring/Ring.tsx -------------------------------------------------------------------------------- /components/atomics/common/SidewaysLines/SidewaysLines.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/SidewaysLines/SidewaysLines.stories.tsx -------------------------------------------------------------------------------- /components/atomics/common/SidewaysLines/SidewaysLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/SidewaysLines/SidewaysLines.tsx -------------------------------------------------------------------------------- /components/atomics/common/Triangle/Triangle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/Triangle/Triangle.stories.tsx -------------------------------------------------------------------------------- /components/atomics/common/Triangle/Triangle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/Triangle/Triangle.tsx -------------------------------------------------------------------------------- /components/atomics/common/YoutubeEmbedder/YoutubeEmbedder.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/YoutubeEmbedder/YoutubeEmbedder.stories.tsx -------------------------------------------------------------------------------- /components/atomics/common/YoutubeEmbedder/YoutubeEmbedder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/common/YoutubeEmbedder/YoutubeEmbedder.tsx -------------------------------------------------------------------------------- /components/atomics/gatya/SingleMagicCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/gatya/SingleMagicCircle.tsx -------------------------------------------------------------------------------- /components/atomics/home/BigSlideText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/home/BigSlideText.tsx -------------------------------------------------------------------------------- /components/atomics/home/SlideText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/home/SlideText.tsx -------------------------------------------------------------------------------- /components/atomics/info/EmbedBox/EmbedBox.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/info/EmbedBox/EmbedBox.stories.tsx -------------------------------------------------------------------------------- /components/atomics/info/EmbedBox/EmbedBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/info/EmbedBox/EmbedBox.tsx -------------------------------------------------------------------------------- /components/atomics/info/ThumbnailLink/ThumbnailLink.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/info/ThumbnailLink/ThumbnailLink.stories.tsx -------------------------------------------------------------------------------- /components/atomics/info/ThumbnailLink/ThumbnailLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/info/ThumbnailLink/ThumbnailLink.tsx -------------------------------------------------------------------------------- /components/atomics/info/VTuberIcon/VTuberIcon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/info/VTuberIcon/VTuberIcon.stories.tsx -------------------------------------------------------------------------------- /components/atomics/info/VTuberIcon/VTuberIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/atomics/info/VTuberIcon/VTuberIcon.tsx -------------------------------------------------------------------------------- /components/molecules/common/ListRow/ListRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/molecules/common/ListRow/ListRow.tsx -------------------------------------------------------------------------------- /components/molecules/common/ListRow/__tests__/ListRow.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/molecules/common/ListRow/__tests__/ListRow.test.tsx -------------------------------------------------------------------------------- /components/molecules/common/ListRow/__tests__/__snapshots__/ListRow.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/molecules/common/ListRow/__tests__/__snapshots__/ListRow.test.tsx.snap -------------------------------------------------------------------------------- /components/molecules/info/VTuberIconAndName/VTuberIconAndName.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/molecules/info/VTuberIconAndName/VTuberIconAndName.stories.tsx -------------------------------------------------------------------------------- /components/molecules/info/VTuberIconAndName/VTuberIconAndName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/molecules/info/VTuberIconAndName/VTuberIconAndName.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/ExpandCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/ExpandCircle.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBar.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarCrossMarks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarCrossMarks.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarLeft/CenterCircle/CenterCircle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarLeft/CenterCircle/CenterCircle.stories.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarLeft/CenterCircle/CenterCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarLeft/CenterCircle/CenterCircle.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarLeft/CenterCircle/OutsideRotateLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarLeft/CenterCircle/OutsideRotateLine.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarLeft/CenterCircle/animationBaseDelay.ts: -------------------------------------------------------------------------------- 1 | export const startAnimationBaseDelayMs = 600; 2 | -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarLeft/CloseAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarLeft/CloseAnimation.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarLeft/NavBarLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarLeft/NavBarLeft.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarLeft/ThreeSlashes/ThreeSlashes.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarLeft/ThreeSlashes/ThreeSlashes.stories.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarLeft/ThreeSlashes/ThreeSlashes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarLeft/ThreeSlashes/ThreeSlashes.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarMenu/NavBarMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarMenu/NavBarMenu.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarRings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarRings.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarSidewaysLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarSidewaysLines.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarTop/NavBarTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarTop/NavBarTitle.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarTop/NavBarTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarTop/NavBarTop.tsx -------------------------------------------------------------------------------- /components/organisms/common/NavBar/NavBarTriangles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/common/NavBar/NavBarTriangles.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/AngeCard/AngeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/AngeCard/AngeCard.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/AngeCard/AngeDescription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/AngeCard/AngeDescription.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/AngeCard/AngeImg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/AngeCard/AngeImg.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/AngeCard/AngeName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/AngeCard/AngeName.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/AngeCard/SSRText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/AngeCard/SSRText.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/AngeCard/WhiteBG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/AngeCard/WhiteBG.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/AngeCard/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/AngeCard/constants.ts -------------------------------------------------------------------------------- /components/organisms/gatya/AngeTriangle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/AngeTriangle.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/BlackTransition/BlackCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/BlackTransition/BlackCircle.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/BlackTransition/BlackTransition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/BlackTransition/BlackTransition.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/Flash/CircleFlash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/Flash/CircleFlash.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/Flash/Flash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/Flash/Flash.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/Flash/HideScreenCircleFlash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/Flash/HideScreenCircleFlash.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/Flash/LineFlash.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/Flash/LineFlash.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/Flash/WhiteCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/Flash/WhiteCircle.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/MagicCircle/MagicCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/MagicCircle/MagicCircle.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/MagicCircle/SummonText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/MagicCircle/SummonText.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/OmataseMattaText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/OmataseMattaText.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/ShowAngeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/ShowAngeCard.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/SmallMagicCircleMap/SmallMagicCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/SmallMagicCircleMap/SmallMagicCircle.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/SmallMagicCircleMap/SmallMagicCircleMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/SmallMagicCircleMap/SmallMagicCircleMap.tsx -------------------------------------------------------------------------------- /components/organisms/gatya/description/DecriptionMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/gatya/description/DecriptionMain.tsx -------------------------------------------------------------------------------- /components/organisms/home/CircleSlide/CircleMain.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/CircleSlide/CircleMain.tsx -------------------------------------------------------------------------------- /components/organisms/home/CircleSlide/CircleSlide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/CircleSlide/CircleSlide.tsx -------------------------------------------------------------------------------- /components/organisms/home/CircleSlide/SlideController/SlideContent/NormalSlideContent/NormalOneSlideContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/CircleSlide/SlideController/SlideContent/NormalSlideContent/NormalOneSlideContent.tsx -------------------------------------------------------------------------------- /components/organisms/home/CircleSlide/SlideController/SlideContent/NormalSlideContent/NormalSlideContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/CircleSlide/SlideController/SlideContent/NormalSlideContent/NormalSlideContent.tsx -------------------------------------------------------------------------------- /components/organisms/home/CircleSlide/SlideController/SlideContent/SlideContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/CircleSlide/SlideController/SlideContent/SlideContent.tsx -------------------------------------------------------------------------------- /components/organisms/home/CircleSlide/SlideController/SlideContent/SplitedSlideContent/SplitedSlideContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/CircleSlide/SlideController/SlideContent/SplitedSlideContent/SplitedSlideContent.tsx -------------------------------------------------------------------------------- /components/organisms/home/CircleSlide/SlideController/SlideContent/contentDatas/contentDataType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/CircleSlide/SlideController/SlideContent/contentDatas/contentDataType.ts -------------------------------------------------------------------------------- /components/organisms/home/CircleSlide/SlideController/SlideContent/contentDatas/meritAndDemeritData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/CircleSlide/SlideController/SlideContent/contentDatas/meritAndDemeritData.tsx -------------------------------------------------------------------------------- /components/organisms/home/CircleSlide/SlideController/SlideContent/contentDatas/sanbakaData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/CircleSlide/SlideController/SlideContent/contentDatas/sanbakaData.tsx -------------------------------------------------------------------------------- /components/organisms/home/CircleSlide/SlideController/SlideContent/contentDatas/streamingStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/CircleSlide/SlideController/SlideContent/contentDatas/streamingStyle.tsx -------------------------------------------------------------------------------- /components/organisms/home/CircleSlide/SlideController/SlideContent/slideAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/CircleSlide/SlideController/SlideContent/slideAnimation.ts -------------------------------------------------------------------------------- /components/organisms/home/CircleSlide/SlideController/SlideController.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/CircleSlide/SlideController/SlideController.tsx -------------------------------------------------------------------------------- /components/organisms/home/HomeAnge/HomeAnge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/HomeAnge/HomeAnge.tsx -------------------------------------------------------------------------------- /components/organisms/home/HomeAnge/SpeechBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/HomeAnge/SpeechBubble.tsx -------------------------------------------------------------------------------- /components/organisms/home/HomeBG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/HomeBG.tsx -------------------------------------------------------------------------------- /components/organisms/home/OpenerFromStartAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/home/OpenerFromStartAnimation.tsx -------------------------------------------------------------------------------- /components/organisms/info/AngeDescriptionArea/AngeDescription.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/info/AngeDescriptionArea/AngeDescription.tsx -------------------------------------------------------------------------------- /components/organisms/info/AngeDescriptionArea/AngeDescriptionArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/info/AngeDescriptionArea/AngeDescriptionArea.tsx -------------------------------------------------------------------------------- /components/organisms/info/AngeDescriptionArea/AngeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/info/AngeDescriptionArea/AngeIcon.tsx -------------------------------------------------------------------------------- /components/organisms/info/AngeDescriptionArea/AngeProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/info/AngeDescriptionArea/AngeProfile.tsx -------------------------------------------------------------------------------- /components/organisms/info/AngeDescriptionArea/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/info/AngeDescriptionArea/Background.tsx -------------------------------------------------------------------------------- /components/organisms/info/AngeLinksArea/AngeLinksArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/info/AngeLinksArea/AngeLinksArea.tsx -------------------------------------------------------------------------------- /components/organisms/info/EmbedContentArea/EmbedContentArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/info/EmbedContentArea/EmbedContentArea.tsx -------------------------------------------------------------------------------- /components/organisms/info/WhatIsSanbakaArea/WhatIsSanbakaArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/info/WhatIsSanbakaArea/WhatIsSanbakaArea.tsx -------------------------------------------------------------------------------- /components/organisms/license/LicenseBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/license/LicenseBlock.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime1/Anime1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime1/Anime1.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime1/CenterCircles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime1/CenterCircles.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime1/CenterText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime1/CenterText.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime1/LeftBottomBlackCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime1/LeftBottomBlackCircle.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime1/LeftTopCircles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime1/LeftTopCircles.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime1/RightBottomCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime1/RightBottomCircle.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime1/RightTopCircles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime1/RightTopCircles.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime2/Anime2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime2/Anime2.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime2/BGBorderText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime2/BGBorderText.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime2/BottomWave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime2/BottomWave.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime2/CenterWave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime2/CenterWave.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime2/CloseAnime2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime2/CloseAnime2.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime2/ExpandCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime2/ExpandCircle.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime2/WaveBG.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime2/WaveBG.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime2/WaveScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime2/WaveScreen.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime3/AngeImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime3/AngeImage.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime3/AngeName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime3/AngeName.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime3/Anime3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime3/Anime3.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime3/BGBorderText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime3/BGBorderText.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime3/CloseAnime3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime3/CloseAnime3.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Anime3/OpenAnime3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Anime3/OpenAnime3.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Loading/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Loading/Loading.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Loading/LoadingText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Loading/LoadingText.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/Loading/ThreeSquares.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/Loading/ThreeSquares.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/LoadingToAnime1/AnimateSquare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/LoadingToAnime1/AnimateSquare.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/LoadingToAnime1/BackgroundAnimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/LoadingToAnime1/BackgroundAnimation.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/LoadingToAnime1/LoadingToAnime1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/LoadingToAnime1/LoadingToAnime1.tsx -------------------------------------------------------------------------------- /components/organisms/startAnimation/LoadingToAnime1/animationOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/organisms/startAnimation/LoadingToAnime1/animationOrder.ts -------------------------------------------------------------------------------- /components/templates/CSR.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/templates/CSR.tsx -------------------------------------------------------------------------------- /components/templates/PageWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/components/templates/PageWrapper.tsx -------------------------------------------------------------------------------- /constants/breakpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/constants/breakpoints.ts -------------------------------------------------------------------------------- /constants/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/constants/colors.ts -------------------------------------------------------------------------------- /constants/cssProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/constants/cssProps.ts -------------------------------------------------------------------------------- /constants/gatya/animation_order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/constants/gatya/animation_order.ts -------------------------------------------------------------------------------- /constants/gatya/omataseMattaSetting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/constants/gatya/omataseMattaSetting.ts -------------------------------------------------------------------------------- /constants/gatya/zindex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/constants/gatya/zindex.ts -------------------------------------------------------------------------------- /constants/home/zindex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/constants/home/zindex.ts -------------------------------------------------------------------------------- /constants/zindex.ts: -------------------------------------------------------------------------------- 1 | export const navBarZindex = 150; 2 | -------------------------------------------------------------------------------- /hooks/useAnimationRestarter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/hooks/useAnimationRestarter.tsx -------------------------------------------------------------------------------- /hooks/useDidMount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/hooks/useDidMount.ts -------------------------------------------------------------------------------- /hooks/useIntersectionObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/hooks/useIntersectionObserver.ts -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/index.d.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/jest.config.js -------------------------------------------------------------------------------- /lighthouserc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/lighthouserc.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/gatya.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/pages/gatya.tsx -------------------------------------------------------------------------------- /pages/gatya/description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/pages/gatya/description.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/pages/info.tsx -------------------------------------------------------------------------------- /pages/license.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/pages/license.tsx -------------------------------------------------------------------------------- /pages/ogp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/pages/ogp.tsx -------------------------------------------------------------------------------- /pages/startanimation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/pages/startanimation.tsx -------------------------------------------------------------------------------- /public/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/favicons/browserconfig.xml -------------------------------------------------------------------------------- /public/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/favicons/favicon.ico -------------------------------------------------------------------------------- /public/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /public/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/favicons/site.webmanifest -------------------------------------------------------------------------------- /public/imgs/ange-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/ange-basic.png -------------------------------------------------------------------------------- /public/imgs/ange-doctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/ange-doctor.png -------------------------------------------------------------------------------- /public/imgs/common/github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/common/github-logo.png -------------------------------------------------------------------------------- /public/imgs/common/nijisanji-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/common/nijisanji-logo.png -------------------------------------------------------------------------------- /public/imgs/gatya/ange-hey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/gatya/ange-hey.png -------------------------------------------------------------------------------- /public/imgs/gatya/ange-light-dress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/gatya/ange-light-dress.png -------------------------------------------------------------------------------- /public/imgs/gatya/fourth_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/gatya/fourth_in.png -------------------------------------------------------------------------------- /public/imgs/gatya/most_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/gatya/most_in.png -------------------------------------------------------------------------------- /public/imgs/gatya/second_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/gatya/second_in.png -------------------------------------------------------------------------------- /public/imgs/gatya/third_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/gatya/third_in.png -------------------------------------------------------------------------------- /public/imgs/info/mashmellow-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/info/mashmellow-logo.png -------------------------------------------------------------------------------- /public/imgs/info/nijisanji-wiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/info/nijisanji-wiki.png -------------------------------------------------------------------------------- /public/imgs/info/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/info/rectangle.png -------------------------------------------------------------------------------- /public/imgs/info/twitter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/info/twitter-logo.png -------------------------------------------------------------------------------- /public/imgs/inui-toko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/inui-toko.png -------------------------------------------------------------------------------- /public/imgs/ogp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/ogp.png -------------------------------------------------------------------------------- /public/imgs/rize-heruesta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/imgs/rize-heruesta.png -------------------------------------------------------------------------------- /public/load-adobe-fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/load-adobe-fonts.js -------------------------------------------------------------------------------- /public/svgs/common/ange_triangle_sharp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/ange_triangle_sharp.svg -------------------------------------------------------------------------------- /public/svgs/common/black_triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/black_triangle.svg -------------------------------------------------------------------------------- /public/svgs/common/one_black_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/one_black_circle.svg -------------------------------------------------------------------------------- /public/svgs/common/one_yellow_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/one_yellow_circle.svg -------------------------------------------------------------------------------- /public/svgs/common/red-homeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/red-homeIcon.svg -------------------------------------------------------------------------------- /public/svgs/common/red-infoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/red-infoIcon.svg -------------------------------------------------------------------------------- /public/svgs/common/red-licenseIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/red-licenseIcon.svg -------------------------------------------------------------------------------- /public/svgs/common/red-presentIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/red-presentIcon.svg -------------------------------------------------------------------------------- /public/svgs/common/red_triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/red_triangle.svg -------------------------------------------------------------------------------- /public/svgs/common/two_yellow_two_red_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/two_yellow_two_red_circle.svg -------------------------------------------------------------------------------- /public/svgs/common/white-homeIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/white-homeIcon.svg -------------------------------------------------------------------------------- /public/svgs/common/white-infoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/white-infoIcon.svg -------------------------------------------------------------------------------- /public/svgs/common/white-licenseIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/white-licenseIcon.svg -------------------------------------------------------------------------------- /public/svgs/common/white-presentIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/white-presentIcon.svg -------------------------------------------------------------------------------- /public/svgs/common/white_triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/white_triangle.svg -------------------------------------------------------------------------------- /public/svgs/common/yellow_triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/common/yellow_triangle.svg -------------------------------------------------------------------------------- /public/svgs/gatya/ange_triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/gatya/ange_triangle.svg -------------------------------------------------------------------------------- /public/svgs/gatya/flash_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/gatya/flash_line.svg -------------------------------------------------------------------------------- /public/svgs/gatya/fourth_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/gatya/fourth_in.svg -------------------------------------------------------------------------------- /public/svgs/gatya/most_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/gatya/most_in.svg -------------------------------------------------------------------------------- /public/svgs/gatya/red_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/gatya/red_circle.svg -------------------------------------------------------------------------------- /public/svgs/gatya/second_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/gatya/second_in.svg -------------------------------------------------------------------------------- /public/svgs/gatya/summon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/gatya/summon.svg -------------------------------------------------------------------------------- /public/svgs/gatya/third_in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/gatya/third_in.svg -------------------------------------------------------------------------------- /public/svgs/gatya/white_circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/gatya/white_circle.svg -------------------------------------------------------------------------------- /public/svgs/home/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/home/logo.svg -------------------------------------------------------------------------------- /public/svgs/home/red-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/home/red-logo.svg -------------------------------------------------------------------------------- /public/svgs/startanimation/black-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/startanimation/black-wave.svg -------------------------------------------------------------------------------- /public/svgs/startanimation/red-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/startanimation/red-wave.svg -------------------------------------------------------------------------------- /public/svgs/startanimation/wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/startanimation/wave.svg -------------------------------------------------------------------------------- /public/svgs/startanimation/yellow-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/public/svgs/startanimation/yellow-wave.svg -------------------------------------------------------------------------------- /redux/modules/isStartSummonAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/redux/modules/isStartSummonAnimation.ts -------------------------------------------------------------------------------- /redux/modules/sizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/redux/modules/sizes.ts -------------------------------------------------------------------------------- /redux/modules/sounds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/redux/modules/sounds.ts -------------------------------------------------------------------------------- /redux/modules/startAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/redux/modules/startAnimation.ts -------------------------------------------------------------------------------- /redux/modules/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/redux/modules/themes.ts -------------------------------------------------------------------------------- /redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/redux/store.ts -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/renovate.json -------------------------------------------------------------------------------- /stories/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/Button.stories.tsx -------------------------------------------------------------------------------- /stories/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/Button.tsx -------------------------------------------------------------------------------- /stories/Header.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/Header.stories.tsx -------------------------------------------------------------------------------- /stories/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/Header.tsx -------------------------------------------------------------------------------- /stories/Introduction.stories.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/Introduction.stories.mdx -------------------------------------------------------------------------------- /stories/Page.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/Page.stories.tsx -------------------------------------------------------------------------------- /stories/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/Page.tsx -------------------------------------------------------------------------------- /stories/assets/code-brackets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/assets/code-brackets.svg -------------------------------------------------------------------------------- /stories/assets/colors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/assets/colors.svg -------------------------------------------------------------------------------- /stories/assets/comments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/assets/comments.svg -------------------------------------------------------------------------------- /stories/assets/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/assets/direction.svg -------------------------------------------------------------------------------- /stories/assets/flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/assets/flow.svg -------------------------------------------------------------------------------- /stories/assets/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/assets/plugin.svg -------------------------------------------------------------------------------- /stories/assets/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/assets/repo.svg -------------------------------------------------------------------------------- /stories/assets/stackalt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/assets/stackalt.svg -------------------------------------------------------------------------------- /stories/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/button.css -------------------------------------------------------------------------------- /stories/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/header.css -------------------------------------------------------------------------------- /stories/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/stories/page.css -------------------------------------------------------------------------------- /styles/commonAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/styles/commonAnimation.ts -------------------------------------------------------------------------------- /styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/styles/global.scss -------------------------------------------------------------------------------- /systems/getRandomInt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/systems/getRandomInt.ts -------------------------------------------------------------------------------- /systems/sizeTypeJudge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/systems/sizeTypeJudge.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typing/AnimationProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/typing/AnimationProps.ts -------------------------------------------------------------------------------- /typing/Color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/typing/Color.ts -------------------------------------------------------------------------------- /typing/LocationXY.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/typing/LocationXY.ts -------------------------------------------------------------------------------- /typing/SizeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/typing/SizeType.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UMASHIBA1/AngeKatrina-unofficial-fansite/HEAD/yarn.lock --------------------------------------------------------------------------------