├── .babelrc ├── .env.development ├── .env.production ├── .eslintrc.json ├── .gitignore ├── .gitlab-ci.yml ├── LICENSE.md ├── README.md ├── images ├── cover.png └── screen.png ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── 404.tsx ├── _app.tsx ├── _document.tsx ├── blog │ ├── [url].tsx │ ├── index.tsx │ ├── markdown-styles.module.css │ └── page │ │ └── [page].tsx ├── index.tsx └── privacy-policy.tsx ├── public └── images │ ├── 404.webp │ ├── SocialPreview.jpg │ ├── apple-touch-icon.png │ ├── coockie.svg │ ├── dot.svg │ ├── dropdown.tsx │ ├── ellipse.svg │ ├── exit.svg │ ├── facebook.svg │ ├── favicon-16.png │ ├── favicon-32.png │ ├── feather.png │ ├── go-back.svg │ ├── instagram.svg │ ├── rectangle.png │ ├── robots.txt │ └── twitter.svg ├── src ├── components │ ├── Container │ │ ├── Container.tsx │ │ ├── index.ts │ │ └── styles.ts │ ├── Cookies │ │ ├── Cookies.tsx │ │ ├── index.ts │ │ └── styles.ts │ ├── Footer │ │ ├── Footer.tsx │ │ ├── index.ts │ │ └── styles.ts │ ├── Header │ │ ├── Header.tsx │ │ ├── MobileMenu │ │ │ ├── MobileMenu.tsx │ │ │ ├── index.ts │ │ │ └── styles.ts │ │ ├── index.ts │ │ └── styles.ts │ ├── HomeContent │ │ ├── HomeContent.tsx │ │ ├── index.ts │ │ └── styles.ts │ ├── Pagination │ │ ├── Pagination.tsx │ │ └── index.ts │ ├── PopUpDevelopment │ │ ├── PopUpDevelopment.tsx │ │ ├── index.ts │ │ └── styles.ts │ ├── Post │ │ ├── Post.tsx │ │ ├── index.ts │ │ └── styles.ts │ ├── PrivacyPolicy │ │ ├── PrivacyPolicy.tsx │ │ ├── index.ts │ │ └── styles.ts │ ├── SimilarPost │ │ ├── SimilarPost.tsx │ │ ├── index.ts │ │ └── styles.ts │ └── common │ │ └── styles.ts ├── config │ ├── api.ts │ ├── apiRoutes.ts │ ├── auth.ts │ └── routes.ts ├── constants │ ├── breakpoints.ts │ ├── colors.ts │ ├── difficulties.ts │ ├── fonts.ts │ ├── game.ts │ └── theme.ts ├── helpers │ ├── isImagePath.ts │ └── languageStore.ts ├── i18n │ ├── index.ts │ └── languages │ │ ├── en.ts │ │ ├── index.ts │ │ └── uk.ts ├── svg │ ├── ClockIcon.tsx │ ├── ReadMoreIcon.tsx │ └── index.ts ├── types │ ├── auth.ts │ ├── pagination.ts │ ├── popup 2.ts │ ├── popup.ts │ ├── post.ts │ ├── statuses.ts │ └── support.ts └── utils │ ├── LocalStorage.ts │ ├── StatePagination.ts │ ├── createEmotionCache.ts │ └── gtag.ts ├── styles └── styles.ts └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/.babelrc -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- 1 | REACT_APP_URL=http://localhost:5010/ -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | REACT_APP_URL=http://localhost:5010/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/README.md -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/images/cover.png -------------------------------------------------------------------------------- /images/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/images/screen.png -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/blog/[url].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/pages/blog/[url].tsx -------------------------------------------------------------------------------- /pages/blog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/pages/blog/index.tsx -------------------------------------------------------------------------------- /pages/blog/markdown-styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/pages/blog/markdown-styles.module.css -------------------------------------------------------------------------------- /pages/blog/page/[page].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/pages/blog/page/[page].tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/privacy-policy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/pages/privacy-policy.tsx -------------------------------------------------------------------------------- /public/images/404.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/404.webp -------------------------------------------------------------------------------- /public/images/SocialPreview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/SocialPreview.jpg -------------------------------------------------------------------------------- /public/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/apple-touch-icon.png -------------------------------------------------------------------------------- /public/images/coockie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/coockie.svg -------------------------------------------------------------------------------- /public/images/dot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/dot.svg -------------------------------------------------------------------------------- /public/images/dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/dropdown.tsx -------------------------------------------------------------------------------- /public/images/ellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/ellipse.svg -------------------------------------------------------------------------------- /public/images/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/exit.svg -------------------------------------------------------------------------------- /public/images/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/facebook.svg -------------------------------------------------------------------------------- /public/images/favicon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/favicon-16.png -------------------------------------------------------------------------------- /public/images/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/favicon-32.png -------------------------------------------------------------------------------- /public/images/feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/feather.png -------------------------------------------------------------------------------- /public/images/go-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/go-back.svg -------------------------------------------------------------------------------- /public/images/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/instagram.svg -------------------------------------------------------------------------------- /public/images/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/rectangle.png -------------------------------------------------------------------------------- /public/images/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / -------------------------------------------------------------------------------- /public/images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/public/images/twitter.svg -------------------------------------------------------------------------------- /src/components/Container/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Container/Container.tsx -------------------------------------------------------------------------------- /src/components/Container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Container/index.ts -------------------------------------------------------------------------------- /src/components/Container/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Container/styles.ts -------------------------------------------------------------------------------- /src/components/Cookies/Cookies.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Cookies/Cookies.tsx -------------------------------------------------------------------------------- /src/components/Cookies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Cookies/index.ts -------------------------------------------------------------------------------- /src/components/Cookies/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Cookies/styles.ts -------------------------------------------------------------------------------- /src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/Footer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Footer/index.ts -------------------------------------------------------------------------------- /src/components/Footer/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Footer/styles.ts -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Header/MobileMenu/MobileMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Header/MobileMenu/MobileMenu.tsx -------------------------------------------------------------------------------- /src/components/Header/MobileMenu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Header/MobileMenu/index.ts -------------------------------------------------------------------------------- /src/components/Header/MobileMenu/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Header/MobileMenu/styles.ts -------------------------------------------------------------------------------- /src/components/Header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Header/index.ts -------------------------------------------------------------------------------- /src/components/Header/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Header/styles.ts -------------------------------------------------------------------------------- /src/components/HomeContent/HomeContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/HomeContent/HomeContent.tsx -------------------------------------------------------------------------------- /src/components/HomeContent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/HomeContent/index.ts -------------------------------------------------------------------------------- /src/components/HomeContent/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/HomeContent/styles.ts -------------------------------------------------------------------------------- /src/components/Pagination/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Pagination/Pagination.tsx -------------------------------------------------------------------------------- /src/components/Pagination/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Pagination/index.ts -------------------------------------------------------------------------------- /src/components/PopUpDevelopment/PopUpDevelopment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/PopUpDevelopment/PopUpDevelopment.tsx -------------------------------------------------------------------------------- /src/components/PopUpDevelopment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/PopUpDevelopment/index.ts -------------------------------------------------------------------------------- /src/components/PopUpDevelopment/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/PopUpDevelopment/styles.ts -------------------------------------------------------------------------------- /src/components/Post/Post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Post/Post.tsx -------------------------------------------------------------------------------- /src/components/Post/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Post/index.ts -------------------------------------------------------------------------------- /src/components/Post/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/Post/styles.ts -------------------------------------------------------------------------------- /src/components/PrivacyPolicy/PrivacyPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/PrivacyPolicy/PrivacyPolicy.tsx -------------------------------------------------------------------------------- /src/components/PrivacyPolicy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/PrivacyPolicy/index.ts -------------------------------------------------------------------------------- /src/components/PrivacyPolicy/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/PrivacyPolicy/styles.ts -------------------------------------------------------------------------------- /src/components/SimilarPost/SimilarPost.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/SimilarPost/SimilarPost.tsx -------------------------------------------------------------------------------- /src/components/SimilarPost/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/SimilarPost/index.ts -------------------------------------------------------------------------------- /src/components/SimilarPost/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/SimilarPost/styles.ts -------------------------------------------------------------------------------- /src/components/common/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/components/common/styles.ts -------------------------------------------------------------------------------- /src/config/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/config/api.ts -------------------------------------------------------------------------------- /src/config/apiRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/config/apiRoutes.ts -------------------------------------------------------------------------------- /src/config/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/config/auth.ts -------------------------------------------------------------------------------- /src/config/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/config/routes.ts -------------------------------------------------------------------------------- /src/constants/breakpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/constants/breakpoints.ts -------------------------------------------------------------------------------- /src/constants/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/constants/colors.ts -------------------------------------------------------------------------------- /src/constants/difficulties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/constants/difficulties.ts -------------------------------------------------------------------------------- /src/constants/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/constants/fonts.ts -------------------------------------------------------------------------------- /src/constants/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/constants/game.ts -------------------------------------------------------------------------------- /src/constants/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/constants/theme.ts -------------------------------------------------------------------------------- /src/helpers/isImagePath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/helpers/isImagePath.ts -------------------------------------------------------------------------------- /src/helpers/languageStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/helpers/languageStore.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/languages/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/i18n/languages/en.ts -------------------------------------------------------------------------------- /src/i18n/languages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/i18n/languages/index.ts -------------------------------------------------------------------------------- /src/i18n/languages/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/i18n/languages/uk.ts -------------------------------------------------------------------------------- /src/svg/ClockIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/svg/ClockIcon.tsx -------------------------------------------------------------------------------- /src/svg/ReadMoreIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/svg/ReadMoreIcon.tsx -------------------------------------------------------------------------------- /src/svg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/svg/index.ts -------------------------------------------------------------------------------- /src/types/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/types/auth.ts -------------------------------------------------------------------------------- /src/types/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/types/pagination.ts -------------------------------------------------------------------------------- /src/types/popup 2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/types/popup 2.ts -------------------------------------------------------------------------------- /src/types/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/types/popup.ts -------------------------------------------------------------------------------- /src/types/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/types/post.ts -------------------------------------------------------------------------------- /src/types/statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/types/statuses.ts -------------------------------------------------------------------------------- /src/types/support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/types/support.ts -------------------------------------------------------------------------------- /src/utils/LocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/utils/LocalStorage.ts -------------------------------------------------------------------------------- /src/utils/StatePagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/utils/StatePagination.ts -------------------------------------------------------------------------------- /src/utils/createEmotionCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/utils/createEmotionCache.ts -------------------------------------------------------------------------------- /src/utils/gtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/src/utils/gtag.ts -------------------------------------------------------------------------------- /styles/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/styles/styles.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OmiSoftNet/omisoft-blog-template-front/HEAD/tsconfig.json --------------------------------------------------------------------------------