├── .editorconfig ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── backend ├── .dockerignore ├── .env ├── Dockerfile ├── README.md ├── nest-cli.json ├── package-lock.json ├── package.json ├── src │ ├── app.config.ts │ ├── app.interceptor.ts │ ├── app.module.ts │ ├── articles │ │ ├── articles.module.ts │ │ ├── articles.resolver.ts │ │ ├── articles.service.ts │ │ ├── dto │ │ │ ├── archive-article.input.ts │ │ │ ├── article.input.ts │ │ │ ├── articles.input.ts │ │ │ ├── create-article.input.ts │ │ │ └── update-article.input.ts │ │ ├── entities │ │ │ └── article.entity.ts │ │ └── models │ │ │ └── article.model.ts │ ├── auth │ │ ├── auth.decorators.ts │ │ ├── auth.guard.ts │ │ ├── auth.module.ts │ │ ├── auth.resolver.ts │ │ ├── auth.service.ts │ │ ├── auth.utils.ts │ │ ├── dto │ │ │ └── authenticate.input.ts │ │ ├── entities │ │ │ └── user.entity.ts │ │ ├── models │ │ │ └── user.model.ts │ │ └── strategies │ │ │ └── jwt.strategy.ts │ ├── bot │ │ ├── bot.module.ts │ │ ├── bot.service.ts │ │ └── bot.update.ts │ ├── i18n │ │ ├── i18n.generated.ts │ │ ├── i18n.resolver.ts │ │ └── locales │ │ │ ├── en │ │ │ └── common.yml │ │ │ ├── ru │ │ │ └── common.yml │ │ │ └── uk │ │ │ └── common.yml │ ├── main.ts │ └── schema.gql ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json ├── tsconfig.build.json └── tsconfig.json ├── docker-compose.yaml └── frontend ├── .dockerignore ├── .env.development ├── .env.production ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── @types ├── glodal.d.ts └── gql │ └── index.d.ts ├── Dockerfile ├── README.md ├── app └── [locale] │ ├── articles │ ├── layout.tsx │ └── page.tsx │ ├── auth │ └── [...slug] │ │ ├── layout.tsx │ │ └── page.tsx │ ├── edit │ └── [articleId] │ │ ├── layout.tsx │ │ └── page.tsx │ ├── layout.tsx │ ├── page.tsx │ ├── providers.tsx │ └── view │ └── [articleId] │ ├── layout.tsx │ └── page.tsx ├── codegen.ts ├── components ├── CustomLink.tsx ├── PublishModal.tsx ├── SDKLoader.tsx ├── SetLinkModal.tsx └── Tiptap.tsx ├── environment └── client.ts ├── i18n ├── client.ts ├── locales │ ├── en.ts │ ├── ru.ts │ └── uk.ts └── server.ts ├── middleware.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.js ├── services ├── graphql │ └── client.ts ├── keyFactory.ts ├── useArchiveArticleMutation.ts ├── useArticleQuery.ts ├── useArticlesQuery.ts ├── useAuthenticateMutation.ts ├── useCreateArticleMutation.ts ├── useUpdateArticleMutation.ts └── useUserQuery.ts ├── styles └── globals.scss ├── tailwind.config.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/README.md -------------------------------------------------------------------------------- /backend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/.dockerignore -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/.env -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/nest-cli.json -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/src/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/app.config.ts -------------------------------------------------------------------------------- /backend/src/app.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/app.interceptor.ts -------------------------------------------------------------------------------- /backend/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/app.module.ts -------------------------------------------------------------------------------- /backend/src/articles/articles.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/articles/articles.module.ts -------------------------------------------------------------------------------- /backend/src/articles/articles.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/articles/articles.resolver.ts -------------------------------------------------------------------------------- /backend/src/articles/articles.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/articles/articles.service.ts -------------------------------------------------------------------------------- /backend/src/articles/dto/archive-article.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/articles/dto/archive-article.input.ts -------------------------------------------------------------------------------- /backend/src/articles/dto/article.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/articles/dto/article.input.ts -------------------------------------------------------------------------------- /backend/src/articles/dto/articles.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/articles/dto/articles.input.ts -------------------------------------------------------------------------------- /backend/src/articles/dto/create-article.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/articles/dto/create-article.input.ts -------------------------------------------------------------------------------- /backend/src/articles/dto/update-article.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/articles/dto/update-article.input.ts -------------------------------------------------------------------------------- /backend/src/articles/entities/article.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/articles/entities/article.entity.ts -------------------------------------------------------------------------------- /backend/src/articles/models/article.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/articles/models/article.model.ts -------------------------------------------------------------------------------- /backend/src/auth/auth.decorators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/auth/auth.decorators.ts -------------------------------------------------------------------------------- /backend/src/auth/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/auth/auth.guard.ts -------------------------------------------------------------------------------- /backend/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/auth/auth.module.ts -------------------------------------------------------------------------------- /backend/src/auth/auth.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/auth/auth.resolver.ts -------------------------------------------------------------------------------- /backend/src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/auth/auth.service.ts -------------------------------------------------------------------------------- /backend/src/auth/auth.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/auth/auth.utils.ts -------------------------------------------------------------------------------- /backend/src/auth/dto/authenticate.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/auth/dto/authenticate.input.ts -------------------------------------------------------------------------------- /backend/src/auth/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/auth/entities/user.entity.ts -------------------------------------------------------------------------------- /backend/src/auth/models/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/auth/models/user.model.ts -------------------------------------------------------------------------------- /backend/src/auth/strategies/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/auth/strategies/jwt.strategy.ts -------------------------------------------------------------------------------- /backend/src/bot/bot.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/bot/bot.module.ts -------------------------------------------------------------------------------- /backend/src/bot/bot.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/bot/bot.service.ts -------------------------------------------------------------------------------- /backend/src/bot/bot.update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/bot/bot.update.ts -------------------------------------------------------------------------------- /backend/src/i18n/i18n.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/i18n/i18n.generated.ts -------------------------------------------------------------------------------- /backend/src/i18n/i18n.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/i18n/i18n.resolver.ts -------------------------------------------------------------------------------- /backend/src/i18n/locales/en/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/i18n/locales/en/common.yml -------------------------------------------------------------------------------- /backend/src/i18n/locales/ru/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/i18n/locales/ru/common.yml -------------------------------------------------------------------------------- /backend/src/i18n/locales/uk/common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/i18n/locales/uk/common.yml -------------------------------------------------------------------------------- /backend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/main.ts -------------------------------------------------------------------------------- /backend/src/schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/src/schema.gql -------------------------------------------------------------------------------- /backend/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /backend/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/test/jest-e2e.json -------------------------------------------------------------------------------- /backend/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/tsconfig.build.json -------------------------------------------------------------------------------- /backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/backend/tsconfig.json -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/.dockerignore -------------------------------------------------------------------------------- /frontend/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/.env.development -------------------------------------------------------------------------------- /frontend/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/.env.production -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/.eslintrc.json -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/.prettierrc.json -------------------------------------------------------------------------------- /frontend/@types/glodal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/@types/glodal.d.ts -------------------------------------------------------------------------------- /frontend/@types/gql/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/@types/gql/index.d.ts -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/app/[locale]/articles/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/app/[locale]/articles/layout.tsx -------------------------------------------------------------------------------- /frontend/app/[locale]/articles/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/app/[locale]/articles/page.tsx -------------------------------------------------------------------------------- /frontend/app/[locale]/auth/[...slug]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/app/[locale]/auth/[...slug]/layout.tsx -------------------------------------------------------------------------------- /frontend/app/[locale]/auth/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/app/[locale]/auth/[...slug]/page.tsx -------------------------------------------------------------------------------- /frontend/app/[locale]/edit/[articleId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/app/[locale]/edit/[articleId]/layout.tsx -------------------------------------------------------------------------------- /frontend/app/[locale]/edit/[articleId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/app/[locale]/edit/[articleId]/page.tsx -------------------------------------------------------------------------------- /frontend/app/[locale]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/app/[locale]/layout.tsx -------------------------------------------------------------------------------- /frontend/app/[locale]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/app/[locale]/page.tsx -------------------------------------------------------------------------------- /frontend/app/[locale]/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/app/[locale]/providers.tsx -------------------------------------------------------------------------------- /frontend/app/[locale]/view/[articleId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/app/[locale]/view/[articleId]/layout.tsx -------------------------------------------------------------------------------- /frontend/app/[locale]/view/[articleId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/app/[locale]/view/[articleId]/page.tsx -------------------------------------------------------------------------------- /frontend/codegen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/codegen.ts -------------------------------------------------------------------------------- /frontend/components/CustomLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/components/CustomLink.tsx -------------------------------------------------------------------------------- /frontend/components/PublishModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/components/PublishModal.tsx -------------------------------------------------------------------------------- /frontend/components/SDKLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/components/SDKLoader.tsx -------------------------------------------------------------------------------- /frontend/components/SetLinkModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/components/SetLinkModal.tsx -------------------------------------------------------------------------------- /frontend/components/Tiptap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/components/Tiptap.tsx -------------------------------------------------------------------------------- /frontend/environment/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/environment/client.ts -------------------------------------------------------------------------------- /frontend/i18n/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/i18n/client.ts -------------------------------------------------------------------------------- /frontend/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/i18n/locales/en.ts -------------------------------------------------------------------------------- /frontend/i18n/locales/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/i18n/locales/ru.ts -------------------------------------------------------------------------------- /frontend/i18n/locales/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/i18n/locales/uk.ts -------------------------------------------------------------------------------- /frontend/i18n/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/i18n/server.ts -------------------------------------------------------------------------------- /frontend/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/middleware.ts -------------------------------------------------------------------------------- /frontend/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/next.config.mjs -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/services/graphql/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/services/graphql/client.ts -------------------------------------------------------------------------------- /frontend/services/keyFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/services/keyFactory.ts -------------------------------------------------------------------------------- /frontend/services/useArchiveArticleMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/services/useArchiveArticleMutation.ts -------------------------------------------------------------------------------- /frontend/services/useArticleQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/services/useArticleQuery.ts -------------------------------------------------------------------------------- /frontend/services/useArticlesQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/services/useArticlesQuery.ts -------------------------------------------------------------------------------- /frontend/services/useAuthenticateMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/services/useAuthenticateMutation.ts -------------------------------------------------------------------------------- /frontend/services/useCreateArticleMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/services/useCreateArticleMutation.ts -------------------------------------------------------------------------------- /frontend/services/useUpdateArticleMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/services/useUpdateArticleMutation.ts -------------------------------------------------------------------------------- /frontend/services/useUserQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/services/useUserQuery.ts -------------------------------------------------------------------------------- /frontend/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/styles/globals.scss -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonusdev/mini-content/HEAD/frontend/tsconfig.json --------------------------------------------------------------------------------