├── .babelrc ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc ├── .storybook ├── main.js └── preview.js ├── README.md ├── cypress.json ├── cypress ├── fixtures │ ├── example.json │ ├── profile.json │ └── users.json ├── integration │ └── TopPage.spec.ts ├── plugins │ └── index.ts ├── support │ ├── commands.ts │ └── index.ts └── tsconfig.json ├── jest.config.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── assets │ └── share_image.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── favicon.png ├── manifest.json ├── mstile-150x150.png ├── no_image.png ├── pwa.png ├── pwa.svg ├── safari-pinned-tab.svg ├── site.webmanifest ├── sw.js ├── sw.js.map ├── vercel.svg ├── workbox-eac1af49.js └── workbox-eac1af49.js.map ├── src ├── @types │ └── index.d.ts ├── apis │ ├── BlogApi.spec.ts │ ├── BlogApi.ts │ ├── CategoryApi.spec.ts │ ├── CategoryApi.ts │ ├── FixArticleApi.spec.ts │ ├── FixedArticleApi.ts │ ├── ProfileApi.spec.ts │ └── ProfileApi.ts ├── components │ ├── common │ │ ├── atoms │ │ │ ├── FacebookShareButton │ │ │ │ ├── FacebookShareButton.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── HatenaShareButton │ │ │ │ ├── HatenaShareButton.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── InputForm │ │ │ │ ├── InputForm.spec.tsx │ │ │ │ ├── InputForm.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── PageTitle │ │ │ │ ├── PageTitle.stories.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ └── TwitterShareButton │ │ │ │ ├── TwitterShareButton.stories.tsx │ │ │ │ └── index.tsx │ │ ├── icons │ │ │ ├── ArrowIcon │ │ │ │ └── index.tsx │ │ │ ├── ClockIcon │ │ │ │ ├── ClockIcon.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── CloseIcon │ │ │ │ └── index.tsx │ │ │ ├── FaceBookIcon │ │ │ │ ├── FaceBookIcon.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── GithubIcon │ │ │ │ ├── GithubIcon.stories.tsx │ │ │ │ └── index.tsx │ │ │ ├── MenuIcon │ │ │ │ └── index.tsx │ │ │ ├── SearchIcon │ │ │ │ ├── SearchIcon.stories.tsx │ │ │ │ └── index.tsx │ │ │ └── TwitterIcon │ │ │ │ ├── TwitterIcon.stories.tsx │ │ │ │ └── index.tsx │ │ └── molecules │ │ │ ├── BlogItem │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── BlogItemResponsive │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── DateArea │ │ │ ├── DateArea.stories.tsx │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── HighlightBody │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── Pagination │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── SearchInputForm │ │ │ ├── SearchInputForm.stories.tsx │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── SnsShareArea │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ └── SnsShareBar │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ ├── layouts │ │ ├── Aside │ │ │ ├── ArchiveArea │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── BasicAsidePartsArea │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── CategoryArea │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ProfileArea │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── ProfileAreaResponsive │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── BaseFixedPageLayout │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── BaseLayout │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── BasePostPageLayout │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── BreadList │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Footer │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── Header │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ └── MetaHead │ │ │ └── index.tsx │ ├── modals │ │ ├── MenuModal │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ └── SearchModal │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ └── pages │ │ ├── ArchiveTemplate │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── BlogItemTemplate │ │ ├── index.tsx │ │ ├── organisms │ │ │ ├── TableOfContents │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ │ └── TitleArea │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ └── styles.module.scss │ │ ├── CategoryTemplate │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── Error404Template │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── PageTemplate │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── PolicyTemplate │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── ProfileTemplate │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── SearchTemplate │ │ ├── index.tsx │ │ ├── organisms │ │ │ └── SearchBlogItem │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.scss │ │ ├── styles.module.scss │ │ ├── useSearchTemplate.spec.tsx │ │ └── useSearchTemplate.tsx │ │ ├── TermTemplate │ │ ├── index.tsx │ │ └── styles.module.scss │ │ └── TopTemplate │ │ ├── index.tsx │ │ └── styles.module.scss ├── config │ └── globalAxios.ts ├── constants │ ├── config.ts │ ├── initState.ts │ └── navigation.ts ├── contexts │ ├── ArchiveContext.tsx │ ├── BlogContext.tsx │ ├── CategoryContext.tsx │ ├── ProfileContext.tsx │ └── index.tsx ├── hooks │ ├── useData.spec.tsx │ ├── useDate.tsx │ ├── useLayout.spec.tsx │ ├── useLayout.tsx │ ├── useMetaData.spec.tsx │ ├── useMetaData.tsx │ ├── useModal.spec.tsx │ ├── useModal.tsx │ ├── usePagination.spec.tsx │ ├── usePagination.tsx │ ├── useProfilePageTransition.spec.tsx │ ├── useProfilePageTransition.tsx │ ├── useSearchForm.spec.tsx │ ├── useSearchForm.tsx │ ├── useSetData.spec.tsx │ ├── useSetData.tsx │ ├── useShareUrl.spec.tsx │ └── useShareUrl.tsx ├── lib │ └── gtag.ts ├── logic │ ├── BlogLogic.spec.ts │ ├── BlogLogic.ts │ ├── CommonLogic.spec.ts │ ├── CommonLogic.ts │ ├── DateLogic.spec.ts │ └── DateLogic.ts ├── pages │ ├── 404.tsx │ ├── [blogId].tsx │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ ├── cancel-preview.ts │ │ └── preview.ts │ ├── archive │ │ └── [date] │ │ │ └── page │ │ │ └── [page].tsx │ ├── category │ │ └── [categoryId] │ │ │ └── page │ │ │ └── [page].tsx │ ├── index.tsx │ ├── page │ │ └── [page].tsx │ ├── policy.tsx │ ├── profile.tsx │ ├── search.tsx │ └── term.tsx ├── service │ ├── ArchiveService.spec.ts │ ├── ArchiveService.ts │ ├── BlogService.spec.ts │ └── BlogService.ts ├── styles │ ├── common.scss │ ├── globals.scss │ ├── reset.scss │ └── variable.scss ├── svgs │ ├── arrow.svg │ ├── check.svg │ ├── clock.svg │ ├── close.svg │ ├── facebook.svg │ ├── github.svg │ ├── menu.svg │ ├── search.svg │ └── twitter.svg └── types │ ├── Archive.ts │ ├── Blog.ts │ ├── Category.ts │ ├── Event.ts │ ├── FixedArticle.ts │ ├── Image.ts │ ├── MetaHead.ts │ └── Profile.ts ├── tsconfig.json ├── tsconfig.test.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/README.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/cypress/fixtures/example.json -------------------------------------------------------------------------------- /cypress/fixtures/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/cypress/fixtures/profile.json -------------------------------------------------------------------------------- /cypress/fixtures/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/cypress/fixtures/users.json -------------------------------------------------------------------------------- /cypress/integration/TopPage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/cypress/integration/TopPage.spec.ts -------------------------------------------------------------------------------- /cypress/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/cypress/plugins/index.ts -------------------------------------------------------------------------------- /cypress/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/cypress/support/commands.ts -------------------------------------------------------------------------------- /cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/cypress/support/index.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/jest.config.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/package.json -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/assets/share_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/assets/share_image.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/no_image.png -------------------------------------------------------------------------------- /public/pwa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/pwa.png -------------------------------------------------------------------------------- /public/pwa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/pwa.svg -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/sw.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/sw.js.map -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /public/workbox-eac1af49.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/workbox-eac1af49.js -------------------------------------------------------------------------------- /public/workbox-eac1af49.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/public/workbox-eac1af49.js.map -------------------------------------------------------------------------------- /src/@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/@types/index.d.ts -------------------------------------------------------------------------------- /src/apis/BlogApi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/apis/BlogApi.spec.ts -------------------------------------------------------------------------------- /src/apis/BlogApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/apis/BlogApi.ts -------------------------------------------------------------------------------- /src/apis/CategoryApi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/apis/CategoryApi.spec.ts -------------------------------------------------------------------------------- /src/apis/CategoryApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/apis/CategoryApi.ts -------------------------------------------------------------------------------- /src/apis/FixArticleApi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/apis/FixArticleApi.spec.ts -------------------------------------------------------------------------------- /src/apis/FixedArticleApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/apis/FixedArticleApi.ts -------------------------------------------------------------------------------- /src/apis/ProfileApi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/apis/ProfileApi.spec.ts -------------------------------------------------------------------------------- /src/apis/ProfileApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/apis/ProfileApi.ts -------------------------------------------------------------------------------- /src/components/common/atoms/FacebookShareButton/FacebookShareButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/FacebookShareButton/FacebookShareButton.stories.tsx -------------------------------------------------------------------------------- /src/components/common/atoms/FacebookShareButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/FacebookShareButton/index.tsx -------------------------------------------------------------------------------- /src/components/common/atoms/HatenaShareButton/HatenaShareButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/HatenaShareButton/HatenaShareButton.stories.tsx -------------------------------------------------------------------------------- /src/components/common/atoms/HatenaShareButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/HatenaShareButton/index.tsx -------------------------------------------------------------------------------- /src/components/common/atoms/InputForm/InputForm.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/InputForm/InputForm.spec.tsx -------------------------------------------------------------------------------- /src/components/common/atoms/InputForm/InputForm.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/InputForm/InputForm.stories.tsx -------------------------------------------------------------------------------- /src/components/common/atoms/InputForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/InputForm/index.tsx -------------------------------------------------------------------------------- /src/components/common/atoms/InputForm/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/InputForm/styles.module.scss -------------------------------------------------------------------------------- /src/components/common/atoms/PageTitle/PageTitle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/PageTitle/PageTitle.stories.tsx -------------------------------------------------------------------------------- /src/components/common/atoms/PageTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/PageTitle/index.tsx -------------------------------------------------------------------------------- /src/components/common/atoms/PageTitle/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/PageTitle/styles.module.scss -------------------------------------------------------------------------------- /src/components/common/atoms/TwitterShareButton/TwitterShareButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/TwitterShareButton/TwitterShareButton.stories.tsx -------------------------------------------------------------------------------- /src/components/common/atoms/TwitterShareButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/atoms/TwitterShareButton/index.tsx -------------------------------------------------------------------------------- /src/components/common/icons/ArrowIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/ArrowIcon/index.tsx -------------------------------------------------------------------------------- /src/components/common/icons/ClockIcon/ClockIcon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/ClockIcon/ClockIcon.stories.tsx -------------------------------------------------------------------------------- /src/components/common/icons/ClockIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/ClockIcon/index.tsx -------------------------------------------------------------------------------- /src/components/common/icons/CloseIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/CloseIcon/index.tsx -------------------------------------------------------------------------------- /src/components/common/icons/FaceBookIcon/FaceBookIcon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/FaceBookIcon/FaceBookIcon.stories.tsx -------------------------------------------------------------------------------- /src/components/common/icons/FaceBookIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/FaceBookIcon/index.tsx -------------------------------------------------------------------------------- /src/components/common/icons/GithubIcon/GithubIcon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/GithubIcon/GithubIcon.stories.tsx -------------------------------------------------------------------------------- /src/components/common/icons/GithubIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/GithubIcon/index.tsx -------------------------------------------------------------------------------- /src/components/common/icons/MenuIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/MenuIcon/index.tsx -------------------------------------------------------------------------------- /src/components/common/icons/SearchIcon/SearchIcon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/SearchIcon/SearchIcon.stories.tsx -------------------------------------------------------------------------------- /src/components/common/icons/SearchIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/SearchIcon/index.tsx -------------------------------------------------------------------------------- /src/components/common/icons/TwitterIcon/TwitterIcon.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/TwitterIcon/TwitterIcon.stories.tsx -------------------------------------------------------------------------------- /src/components/common/icons/TwitterIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/icons/TwitterIcon/index.tsx -------------------------------------------------------------------------------- /src/components/common/molecules/BlogItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/BlogItem/index.tsx -------------------------------------------------------------------------------- /src/components/common/molecules/BlogItem/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/BlogItem/styles.module.scss -------------------------------------------------------------------------------- /src/components/common/molecules/BlogItemResponsive/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/BlogItemResponsive/index.tsx -------------------------------------------------------------------------------- /src/components/common/molecules/BlogItemResponsive/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/BlogItemResponsive/styles.module.scss -------------------------------------------------------------------------------- /src/components/common/molecules/DateArea/DateArea.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/DateArea/DateArea.stories.tsx -------------------------------------------------------------------------------- /src/components/common/molecules/DateArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/DateArea/index.tsx -------------------------------------------------------------------------------- /src/components/common/molecules/DateArea/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/DateArea/styles.module.scss -------------------------------------------------------------------------------- /src/components/common/molecules/HighlightBody/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/HighlightBody/index.tsx -------------------------------------------------------------------------------- /src/components/common/molecules/HighlightBody/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/HighlightBody/styles.module.scss -------------------------------------------------------------------------------- /src/components/common/molecules/Pagination/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/Pagination/index.tsx -------------------------------------------------------------------------------- /src/components/common/molecules/Pagination/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/Pagination/styles.module.scss -------------------------------------------------------------------------------- /src/components/common/molecules/SearchInputForm/SearchInputForm.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/SearchInputForm/SearchInputForm.stories.tsx -------------------------------------------------------------------------------- /src/components/common/molecules/SearchInputForm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/SearchInputForm/index.tsx -------------------------------------------------------------------------------- /src/components/common/molecules/SearchInputForm/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/SearchInputForm/styles.module.scss -------------------------------------------------------------------------------- /src/components/common/molecules/SnsShareArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/SnsShareArea/index.tsx -------------------------------------------------------------------------------- /src/components/common/molecules/SnsShareArea/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/SnsShareArea/styles.module.scss -------------------------------------------------------------------------------- /src/components/common/molecules/SnsShareBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/SnsShareBar/index.tsx -------------------------------------------------------------------------------- /src/components/common/molecules/SnsShareBar/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/common/molecules/SnsShareBar/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/Aside/ArchiveArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Aside/ArchiveArea/index.tsx -------------------------------------------------------------------------------- /src/components/layouts/Aside/ArchiveArea/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Aside/ArchiveArea/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/Aside/BasicAsidePartsArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Aside/BasicAsidePartsArea/index.tsx -------------------------------------------------------------------------------- /src/components/layouts/Aside/BasicAsidePartsArea/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Aside/BasicAsidePartsArea/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/Aside/CategoryArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Aside/CategoryArea/index.tsx -------------------------------------------------------------------------------- /src/components/layouts/Aside/CategoryArea/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Aside/CategoryArea/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/Aside/ProfileArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Aside/ProfileArea/index.tsx -------------------------------------------------------------------------------- /src/components/layouts/Aside/ProfileArea/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Aside/ProfileArea/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/Aside/ProfileAreaResponsive/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Aside/ProfileAreaResponsive/index.tsx -------------------------------------------------------------------------------- /src/components/layouts/Aside/ProfileAreaResponsive/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Aside/ProfileAreaResponsive/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/Aside/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Aside/index.tsx -------------------------------------------------------------------------------- /src/components/layouts/Aside/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Aside/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/BaseFixedPageLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/BaseFixedPageLayout/index.tsx -------------------------------------------------------------------------------- /src/components/layouts/BaseFixedPageLayout/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/BaseFixedPageLayout/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/BaseLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/BaseLayout/index.tsx -------------------------------------------------------------------------------- /src/components/layouts/BaseLayout/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/BaseLayout/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/BasePostPageLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/BasePostPageLayout/index.tsx -------------------------------------------------------------------------------- /src/components/layouts/BasePostPageLayout/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/BasePostPageLayout/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/BreadList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/BreadList/index.tsx -------------------------------------------------------------------------------- /src/components/layouts/BreadList/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/BreadList/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/layouts/Footer/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Footer/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Header/index.tsx -------------------------------------------------------------------------------- /src/components/layouts/Header/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/Header/styles.module.scss -------------------------------------------------------------------------------- /src/components/layouts/MetaHead/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/layouts/MetaHead/index.tsx -------------------------------------------------------------------------------- /src/components/modals/MenuModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/modals/MenuModal/index.tsx -------------------------------------------------------------------------------- /src/components/modals/MenuModal/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/modals/MenuModal/styles.module.scss -------------------------------------------------------------------------------- /src/components/modals/SearchModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/modals/SearchModal/index.tsx -------------------------------------------------------------------------------- /src/components/modals/SearchModal/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/modals/SearchModal/styles.module.scss -------------------------------------------------------------------------------- /src/components/pages/ArchiveTemplate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/ArchiveTemplate/index.tsx -------------------------------------------------------------------------------- /src/components/pages/ArchiveTemplate/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/ArchiveTemplate/styles.module.scss -------------------------------------------------------------------------------- /src/components/pages/BlogItemTemplate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/BlogItemTemplate/index.tsx -------------------------------------------------------------------------------- /src/components/pages/BlogItemTemplate/organisms/TableOfContents/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/BlogItemTemplate/organisms/TableOfContents/index.tsx -------------------------------------------------------------------------------- /src/components/pages/BlogItemTemplate/organisms/TableOfContents/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/BlogItemTemplate/organisms/TableOfContents/styles.module.scss -------------------------------------------------------------------------------- /src/components/pages/BlogItemTemplate/organisms/TitleArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/BlogItemTemplate/organisms/TitleArea/index.tsx -------------------------------------------------------------------------------- /src/components/pages/BlogItemTemplate/organisms/TitleArea/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/BlogItemTemplate/organisms/TitleArea/styles.module.scss -------------------------------------------------------------------------------- /src/components/pages/BlogItemTemplate/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/BlogItemTemplate/styles.module.scss -------------------------------------------------------------------------------- /src/components/pages/CategoryTemplate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/CategoryTemplate/index.tsx -------------------------------------------------------------------------------- /src/components/pages/CategoryTemplate/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/CategoryTemplate/styles.module.scss -------------------------------------------------------------------------------- /src/components/pages/Error404Template/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/Error404Template/index.tsx -------------------------------------------------------------------------------- /src/components/pages/Error404Template/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/Error404Template/styles.module.scss -------------------------------------------------------------------------------- /src/components/pages/PageTemplate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/PageTemplate/index.tsx -------------------------------------------------------------------------------- /src/components/pages/PageTemplate/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/PageTemplate/styles.module.scss -------------------------------------------------------------------------------- /src/components/pages/PolicyTemplate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/PolicyTemplate/index.tsx -------------------------------------------------------------------------------- /src/components/pages/PolicyTemplate/styles.module.scss: -------------------------------------------------------------------------------- 1 | .body { 2 | margin-bottom: 100px; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/pages/ProfileTemplate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/ProfileTemplate/index.tsx -------------------------------------------------------------------------------- /src/components/pages/ProfileTemplate/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/ProfileTemplate/styles.module.scss -------------------------------------------------------------------------------- /src/components/pages/SearchTemplate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/SearchTemplate/index.tsx -------------------------------------------------------------------------------- /src/components/pages/SearchTemplate/organisms/SearchBlogItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/SearchTemplate/organisms/SearchBlogItem/index.tsx -------------------------------------------------------------------------------- /src/components/pages/SearchTemplate/organisms/SearchBlogItem/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/SearchTemplate/organisms/SearchBlogItem/styles.module.scss -------------------------------------------------------------------------------- /src/components/pages/SearchTemplate/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/SearchTemplate/styles.module.scss -------------------------------------------------------------------------------- /src/components/pages/SearchTemplate/useSearchTemplate.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/SearchTemplate/useSearchTemplate.spec.tsx -------------------------------------------------------------------------------- /src/components/pages/SearchTemplate/useSearchTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/SearchTemplate/useSearchTemplate.tsx -------------------------------------------------------------------------------- /src/components/pages/TermTemplate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/TermTemplate/index.tsx -------------------------------------------------------------------------------- /src/components/pages/TermTemplate/styles.module.scss: -------------------------------------------------------------------------------- 1 | .body { 2 | margin-bottom: 100px; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/pages/TopTemplate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/TopTemplate/index.tsx -------------------------------------------------------------------------------- /src/components/pages/TopTemplate/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/components/pages/TopTemplate/styles.module.scss -------------------------------------------------------------------------------- /src/config/globalAxios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/config/globalAxios.ts -------------------------------------------------------------------------------- /src/constants/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/constants/config.ts -------------------------------------------------------------------------------- /src/constants/initState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/constants/initState.ts -------------------------------------------------------------------------------- /src/constants/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/constants/navigation.ts -------------------------------------------------------------------------------- /src/contexts/ArchiveContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/contexts/ArchiveContext.tsx -------------------------------------------------------------------------------- /src/contexts/BlogContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/contexts/BlogContext.tsx -------------------------------------------------------------------------------- /src/contexts/CategoryContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/contexts/CategoryContext.tsx -------------------------------------------------------------------------------- /src/contexts/ProfileContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/contexts/ProfileContext.tsx -------------------------------------------------------------------------------- /src/contexts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/contexts/index.tsx -------------------------------------------------------------------------------- /src/hooks/useData.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useData.spec.tsx -------------------------------------------------------------------------------- /src/hooks/useDate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useDate.tsx -------------------------------------------------------------------------------- /src/hooks/useLayout.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useLayout.spec.tsx -------------------------------------------------------------------------------- /src/hooks/useLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useLayout.tsx -------------------------------------------------------------------------------- /src/hooks/useMetaData.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useMetaData.spec.tsx -------------------------------------------------------------------------------- /src/hooks/useMetaData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useMetaData.tsx -------------------------------------------------------------------------------- /src/hooks/useModal.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useModal.spec.tsx -------------------------------------------------------------------------------- /src/hooks/useModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useModal.tsx -------------------------------------------------------------------------------- /src/hooks/usePagination.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/usePagination.spec.tsx -------------------------------------------------------------------------------- /src/hooks/usePagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/usePagination.tsx -------------------------------------------------------------------------------- /src/hooks/useProfilePageTransition.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useProfilePageTransition.spec.tsx -------------------------------------------------------------------------------- /src/hooks/useProfilePageTransition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useProfilePageTransition.tsx -------------------------------------------------------------------------------- /src/hooks/useSearchForm.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useSearchForm.spec.tsx -------------------------------------------------------------------------------- /src/hooks/useSearchForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useSearchForm.tsx -------------------------------------------------------------------------------- /src/hooks/useSetData.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useSetData.spec.tsx -------------------------------------------------------------------------------- /src/hooks/useSetData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useSetData.tsx -------------------------------------------------------------------------------- /src/hooks/useShareUrl.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useShareUrl.spec.tsx -------------------------------------------------------------------------------- /src/hooks/useShareUrl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/hooks/useShareUrl.tsx -------------------------------------------------------------------------------- /src/lib/gtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/lib/gtag.ts -------------------------------------------------------------------------------- /src/logic/BlogLogic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/logic/BlogLogic.spec.ts -------------------------------------------------------------------------------- /src/logic/BlogLogic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/logic/BlogLogic.ts -------------------------------------------------------------------------------- /src/logic/CommonLogic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/logic/CommonLogic.spec.ts -------------------------------------------------------------------------------- /src/logic/CommonLogic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/logic/CommonLogic.ts -------------------------------------------------------------------------------- /src/logic/DateLogic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/logic/DateLogic.spec.ts -------------------------------------------------------------------------------- /src/logic/DateLogic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/logic/DateLogic.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/[blogId].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/[blogId].tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/api/cancel-preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/api/cancel-preview.ts -------------------------------------------------------------------------------- /src/pages/api/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/api/preview.ts -------------------------------------------------------------------------------- /src/pages/archive/[date]/page/[page].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/archive/[date]/page/[page].tsx -------------------------------------------------------------------------------- /src/pages/category/[categoryId]/page/[page].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/category/[categoryId]/page/[page].tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/page/[page].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/page/[page].tsx -------------------------------------------------------------------------------- /src/pages/policy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/policy.tsx -------------------------------------------------------------------------------- /src/pages/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/profile.tsx -------------------------------------------------------------------------------- /src/pages/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/search.tsx -------------------------------------------------------------------------------- /src/pages/term.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/pages/term.tsx -------------------------------------------------------------------------------- /src/service/ArchiveService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/service/ArchiveService.spec.ts -------------------------------------------------------------------------------- /src/service/ArchiveService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/service/ArchiveService.ts -------------------------------------------------------------------------------- /src/service/BlogService.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/service/BlogService.spec.ts -------------------------------------------------------------------------------- /src/service/BlogService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/service/BlogService.ts -------------------------------------------------------------------------------- /src/styles/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/styles/common.scss -------------------------------------------------------------------------------- /src/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/styles/globals.scss -------------------------------------------------------------------------------- /src/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/styles/reset.scss -------------------------------------------------------------------------------- /src/styles/variable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/styles/variable.scss -------------------------------------------------------------------------------- /src/svgs/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/svgs/arrow.svg -------------------------------------------------------------------------------- /src/svgs/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/svgs/check.svg -------------------------------------------------------------------------------- /src/svgs/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/svgs/clock.svg -------------------------------------------------------------------------------- /src/svgs/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/svgs/close.svg -------------------------------------------------------------------------------- /src/svgs/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/svgs/facebook.svg -------------------------------------------------------------------------------- /src/svgs/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/svgs/github.svg -------------------------------------------------------------------------------- /src/svgs/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/svgs/menu.svg -------------------------------------------------------------------------------- /src/svgs/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/svgs/search.svg -------------------------------------------------------------------------------- /src/svgs/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/svgs/twitter.svg -------------------------------------------------------------------------------- /src/types/Archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/types/Archive.ts -------------------------------------------------------------------------------- /src/types/Blog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/types/Blog.ts -------------------------------------------------------------------------------- /src/types/Category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/types/Category.ts -------------------------------------------------------------------------------- /src/types/Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/types/Event.ts -------------------------------------------------------------------------------- /src/types/FixedArticle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/types/FixedArticle.ts -------------------------------------------------------------------------------- /src/types/Image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/types/Image.ts -------------------------------------------------------------------------------- /src/types/MetaHead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/types/MetaHead.ts -------------------------------------------------------------------------------- /src/types/Profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/src/types/Profile.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiOnishi1129/nochitoku-blog/HEAD/yarn.lock --------------------------------------------------------------------------------