├── .env ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .stylelintrc ├── CRA.md ├── README.md ├── netlify.toml ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── app │ ├── __test__ │ │ └── int.test.tsx │ ├── hocs │ │ ├── index.ts │ │ └── with-router.tsx │ ├── index.scss │ ├── index.tsx │ └── styles │ │ ├── index.scss │ │ ├── normalize-antd.scss │ │ ├── normalize.scss │ │ └── vars.scss ├── entities │ ├── book │ │ ├── index.ts │ │ ├── model │ │ │ └── index.ts │ │ └── ui │ │ │ ├── card │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── index.ts │ │ │ └── row │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ ├── order │ │ ├── index.ts │ │ ├── lib.ts │ │ └── model │ │ │ ├── cart │ │ │ ├── events.ts │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ └── store.ts │ │ │ ├── index.ts │ │ │ └── reservation │ │ │ ├── events.ts │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ └── store.ts │ ├── tariff │ │ ├── index.ts │ │ ├── lib.ts │ │ └── ui │ │ │ ├── index.ts │ │ │ ├── radio │ │ │ └── index.tsx │ │ │ └── tile │ │ │ └── index.tsx │ └── viewer │ │ ├── index.ts │ │ ├── lib.ts │ │ └── model │ │ ├── events.ts │ │ ├── hooks.ts │ │ ├── index.ts │ │ └── stores │ │ ├── fav.ts │ │ └── index.ts ├── features │ ├── cart │ │ ├── actions │ │ │ ├── index.ts │ │ │ └── ui.tsx │ │ ├── index.ts │ │ ├── steps │ │ │ ├── index.ts │ │ │ └── ui.tsx │ │ └── total-info │ │ │ ├── index.ts │ │ │ ├── styles.module.scss │ │ │ └── ui.tsx │ ├── fav │ │ ├── actions │ │ │ ├── index.ts │ │ │ └── ui.tsx │ │ └── index.ts │ ├── reserve │ │ ├── actions │ │ │ ├── index.ts │ │ │ └── ui.tsx │ │ └── index.ts │ └── wallet │ │ ├── add-funds │ │ ├── index.ts │ │ └── ui │ │ │ ├── form │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── index.ts │ │ │ └── popover │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ └── index.ts ├── index.css ├── index.tsx ├── pages │ ├── about │ │ ├── assets │ │ │ ├── bg_books.png │ │ │ ├── bg_hero.jpg │ │ │ ├── bg_laptop.jpg │ │ │ └── section_hero.png │ │ ├── index.tsx │ │ ├── section │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ └── styles.module.scss │ ├── book │ │ ├── index.tsx │ │ └── styles.module.scss │ ├── catalog │ │ ├── book-placeholder.jpg │ │ ├── content │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── index.tsx │ │ ├── params.ts │ │ ├── sidebar │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ └── styles.module.scss │ ├── debug │ │ └── no-header.tsx │ ├── hooks.ts │ ├── index.tsx │ ├── index │ │ ├── index.tsx │ │ └── sections │ │ │ ├── authors │ │ │ ├── assets │ │ │ │ ├── ilyahov.jpg │ │ │ │ ├── orwell.jpg │ │ │ │ ├── palanick.jpg │ │ │ │ ├── taleb.jpg │ │ │ │ └── tolstoy.jpg │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── banner │ │ │ ├── assets │ │ │ │ ├── b1.jpg │ │ │ │ ├── b2.jpg │ │ │ │ └── b3.jpg │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── books │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── catergories │ │ │ ├── assets │ │ │ │ ├── c1.png │ │ │ │ ├── c2.png │ │ │ │ └── c3.png │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ ├── order │ │ ├── cart │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── checkout │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ ├── index.tsx │ │ └── result │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ └── profile │ │ ├── aside │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── config.ts │ │ ├── content │ │ ├── index.tsx │ │ ├── section │ │ │ ├── index.tsx │ │ │ └── styles.module.scss │ │ └── styles.module.scss │ │ ├── index.tsx │ │ ├── lib.tsx │ │ ├── sidebar │ │ ├── index.tsx │ │ └── styles.module.scss │ │ └── styles.module.scss ├── react-app-env.d.ts ├── reportWebVitals.ts ├── setupTests.ts ├── shared │ ├── api │ │ ├── fixtures │ │ │ ├── checkout │ │ │ │ ├── coffeeshops.ts │ │ │ │ ├── index.ts │ │ │ │ ├── orders.ts │ │ │ │ └── reservations.ts │ │ │ ├── index.ts │ │ │ ├── library │ │ │ │ ├── authors.ts │ │ │ │ ├── books.ts │ │ │ │ ├── categories.ts │ │ │ │ ├── index.ts │ │ │ │ └── publishers.ts │ │ │ └── users │ │ │ │ ├── index.ts │ │ │ │ ├── roles.ts │ │ │ │ ├── user-books.ts │ │ │ │ └── users.ts │ │ ├── index.ts │ │ └── types.ts │ ├── config.ts │ ├── lib │ │ ├── alert │ │ │ └── index.ts │ │ ├── browser │ │ │ ├── create-persist-store.ts │ │ │ ├── index.ts │ │ │ └── use-local-storage.ts │ │ ├── dom │ │ │ └── index.ts │ │ ├── hooks │ │ │ └── index.ts │ │ ├── index.ts │ │ └── string │ │ │ └── index.ts │ ├── styles │ │ └── mixins.scss │ └── ui │ │ ├── index.ts │ │ ├── skeleton │ │ ├── index.tsx │ │ └── styles.module.scss │ │ └── tile │ │ ├── group │ │ ├── index.tsx │ │ └── styles.module.scss │ │ ├── index.ts │ │ └── view │ │ ├── index.tsx │ │ └── styles.module.scss └── widgets │ ├── footer │ ├── index.ts │ └── ui │ │ ├── index.tsx │ │ └── styles.module.scss │ └── header │ ├── index.ts │ ├── model │ └── .gitkeep │ ├── params.ts │ └── ui │ ├── index.tsx │ ├── logo.svg │ ├── search │ └── index.tsx │ ├── sticky │ ├── index.tsx │ └── styles.module.scss │ └── styles.module.scss ├── tsconfig.json └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/.env -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/.stylelintrc -------------------------------------------------------------------------------- /CRA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/CRA.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/app/__test__/int.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/app/__test__/int.test.tsx -------------------------------------------------------------------------------- /src/app/hocs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/app/hocs/index.ts -------------------------------------------------------------------------------- /src/app/hocs/with-router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/app/hocs/with-router.tsx -------------------------------------------------------------------------------- /src/app/index.scss: -------------------------------------------------------------------------------- 1 | @import "./styles/index.scss"; 2 | -------------------------------------------------------------------------------- /src/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/app/index.tsx -------------------------------------------------------------------------------- /src/app/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/app/styles/index.scss -------------------------------------------------------------------------------- /src/app/styles/normalize-antd.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/app/styles/normalize-antd.scss -------------------------------------------------------------------------------- /src/app/styles/normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/app/styles/normalize.scss -------------------------------------------------------------------------------- /src/app/styles/vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/app/styles/vars.scss -------------------------------------------------------------------------------- /src/entities/book/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/book/index.ts -------------------------------------------------------------------------------- /src/entities/book/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/book/model/index.ts -------------------------------------------------------------------------------- /src/entities/book/ui/card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/book/ui/card/index.tsx -------------------------------------------------------------------------------- /src/entities/book/ui/card/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/book/ui/card/styles.module.scss -------------------------------------------------------------------------------- /src/entities/book/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/book/ui/index.ts -------------------------------------------------------------------------------- /src/entities/book/ui/row/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/book/ui/row/index.tsx -------------------------------------------------------------------------------- /src/entities/book/ui/row/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/book/ui/row/styles.module.scss -------------------------------------------------------------------------------- /src/entities/order/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/order/index.ts -------------------------------------------------------------------------------- /src/entities/order/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/order/lib.ts -------------------------------------------------------------------------------- /src/entities/order/model/cart/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/order/model/cart/events.ts -------------------------------------------------------------------------------- /src/entities/order/model/cart/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/order/model/cart/hooks.ts -------------------------------------------------------------------------------- /src/entities/order/model/cart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/order/model/cart/index.ts -------------------------------------------------------------------------------- /src/entities/order/model/cart/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/order/model/cart/store.ts -------------------------------------------------------------------------------- /src/entities/order/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/order/model/index.ts -------------------------------------------------------------------------------- /src/entities/order/model/reservation/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/order/model/reservation/events.ts -------------------------------------------------------------------------------- /src/entities/order/model/reservation/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/order/model/reservation/hooks.ts -------------------------------------------------------------------------------- /src/entities/order/model/reservation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/order/model/reservation/index.ts -------------------------------------------------------------------------------- /src/entities/order/model/reservation/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/order/model/reservation/store.ts -------------------------------------------------------------------------------- /src/entities/tariff/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/tariff/index.ts -------------------------------------------------------------------------------- /src/entities/tariff/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/tariff/lib.ts -------------------------------------------------------------------------------- /src/entities/tariff/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/tariff/ui/index.ts -------------------------------------------------------------------------------- /src/entities/tariff/ui/radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/tariff/ui/radio/index.tsx -------------------------------------------------------------------------------- /src/entities/tariff/ui/tile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/tariff/ui/tile/index.tsx -------------------------------------------------------------------------------- /src/entities/viewer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/viewer/index.ts -------------------------------------------------------------------------------- /src/entities/viewer/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/viewer/lib.ts -------------------------------------------------------------------------------- /src/entities/viewer/model/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/viewer/model/events.ts -------------------------------------------------------------------------------- /src/entities/viewer/model/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/viewer/model/hooks.ts -------------------------------------------------------------------------------- /src/entities/viewer/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/viewer/model/index.ts -------------------------------------------------------------------------------- /src/entities/viewer/model/stores/fav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/entities/viewer/model/stores/fav.ts -------------------------------------------------------------------------------- /src/entities/viewer/model/stores/index.ts: -------------------------------------------------------------------------------- 1 | export * as fav from "./fav"; 2 | -------------------------------------------------------------------------------- /src/features/cart/actions/index.ts: -------------------------------------------------------------------------------- 1 | export * as Actions from "./ui"; 2 | -------------------------------------------------------------------------------- /src/features/cart/actions/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/cart/actions/ui.tsx -------------------------------------------------------------------------------- /src/features/cart/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/cart/index.ts -------------------------------------------------------------------------------- /src/features/cart/steps/index.ts: -------------------------------------------------------------------------------- 1 | export * as Steps from "./ui"; 2 | -------------------------------------------------------------------------------- /src/features/cart/steps/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/cart/steps/ui.tsx -------------------------------------------------------------------------------- /src/features/cart/total-info/index.ts: -------------------------------------------------------------------------------- 1 | export * as TotalInfo from "./ui"; 2 | -------------------------------------------------------------------------------- /src/features/cart/total-info/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/cart/total-info/styles.module.scss -------------------------------------------------------------------------------- /src/features/cart/total-info/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/cart/total-info/ui.tsx -------------------------------------------------------------------------------- /src/features/fav/actions/index.ts: -------------------------------------------------------------------------------- 1 | export * as Actions from "./ui"; 2 | -------------------------------------------------------------------------------- /src/features/fav/actions/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/fav/actions/ui.tsx -------------------------------------------------------------------------------- /src/features/fav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/fav/index.ts -------------------------------------------------------------------------------- /src/features/reserve/actions/index.ts: -------------------------------------------------------------------------------- 1 | export * as Actions from "./ui"; 2 | -------------------------------------------------------------------------------- /src/features/reserve/actions/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/reserve/actions/ui.tsx -------------------------------------------------------------------------------- /src/features/reserve/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/reserve/index.ts -------------------------------------------------------------------------------- /src/features/wallet/add-funds/index.ts: -------------------------------------------------------------------------------- 1 | export * as AddFunds from "./ui"; 2 | -------------------------------------------------------------------------------- /src/features/wallet/add-funds/ui/form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/wallet/add-funds/ui/form/index.tsx -------------------------------------------------------------------------------- /src/features/wallet/add-funds/ui/form/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/wallet/add-funds/ui/form/styles.module.scss -------------------------------------------------------------------------------- /src/features/wallet/add-funds/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/wallet/add-funds/ui/index.ts -------------------------------------------------------------------------------- /src/features/wallet/add-funds/ui/popover/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/wallet/add-funds/ui/popover/index.tsx -------------------------------------------------------------------------------- /src/features/wallet/add-funds/ui/popover/styles.module.scss: -------------------------------------------------------------------------------- 1 | .form { 2 | width: 350px; 3 | } 4 | -------------------------------------------------------------------------------- /src/features/wallet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/features/wallet/index.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/about/assets/bg_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/about/assets/bg_books.png -------------------------------------------------------------------------------- /src/pages/about/assets/bg_hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/about/assets/bg_hero.jpg -------------------------------------------------------------------------------- /src/pages/about/assets/bg_laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/about/assets/bg_laptop.jpg -------------------------------------------------------------------------------- /src/pages/about/assets/section_hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/about/assets/section_hero.png -------------------------------------------------------------------------------- /src/pages/about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/about/index.tsx -------------------------------------------------------------------------------- /src/pages/about/section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/about/section/index.tsx -------------------------------------------------------------------------------- /src/pages/about/section/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/about/section/styles.module.scss -------------------------------------------------------------------------------- /src/pages/about/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/about/styles.module.scss -------------------------------------------------------------------------------- /src/pages/book/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/book/index.tsx -------------------------------------------------------------------------------- /src/pages/book/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/book/styles.module.scss -------------------------------------------------------------------------------- /src/pages/catalog/book-placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/catalog/book-placeholder.jpg -------------------------------------------------------------------------------- /src/pages/catalog/content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/catalog/content/index.tsx -------------------------------------------------------------------------------- /src/pages/catalog/content/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/catalog/content/styles.module.scss -------------------------------------------------------------------------------- /src/pages/catalog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/catalog/index.tsx -------------------------------------------------------------------------------- /src/pages/catalog/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/catalog/params.ts -------------------------------------------------------------------------------- /src/pages/catalog/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/catalog/sidebar/index.tsx -------------------------------------------------------------------------------- /src/pages/catalog/sidebar/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/catalog/sidebar/styles.module.scss -------------------------------------------------------------------------------- /src/pages/catalog/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/catalog/styles.module.scss -------------------------------------------------------------------------------- /src/pages/debug/no-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/debug/no-header.tsx -------------------------------------------------------------------------------- /src/pages/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/hooks.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/index/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/index.tsx -------------------------------------------------------------------------------- /src/pages/index/sections/authors/assets/ilyahov.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/authors/assets/ilyahov.jpg -------------------------------------------------------------------------------- /src/pages/index/sections/authors/assets/orwell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/authors/assets/orwell.jpg -------------------------------------------------------------------------------- /src/pages/index/sections/authors/assets/palanick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/authors/assets/palanick.jpg -------------------------------------------------------------------------------- /src/pages/index/sections/authors/assets/taleb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/authors/assets/taleb.jpg -------------------------------------------------------------------------------- /src/pages/index/sections/authors/assets/tolstoy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/authors/assets/tolstoy.jpg -------------------------------------------------------------------------------- /src/pages/index/sections/authors/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/authors/index.tsx -------------------------------------------------------------------------------- /src/pages/index/sections/authors/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/authors/styles.module.scss -------------------------------------------------------------------------------- /src/pages/index/sections/banner/assets/b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/banner/assets/b1.jpg -------------------------------------------------------------------------------- /src/pages/index/sections/banner/assets/b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/banner/assets/b2.jpg -------------------------------------------------------------------------------- /src/pages/index/sections/banner/assets/b3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/banner/assets/b3.jpg -------------------------------------------------------------------------------- /src/pages/index/sections/banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/banner/index.tsx -------------------------------------------------------------------------------- /src/pages/index/sections/banner/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/banner/styles.module.scss -------------------------------------------------------------------------------- /src/pages/index/sections/books/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/books/index.tsx -------------------------------------------------------------------------------- /src/pages/index/sections/books/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/books/styles.module.scss -------------------------------------------------------------------------------- /src/pages/index/sections/catergories/assets/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/catergories/assets/c1.png -------------------------------------------------------------------------------- /src/pages/index/sections/catergories/assets/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/catergories/assets/c2.png -------------------------------------------------------------------------------- /src/pages/index/sections/catergories/assets/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/catergories/assets/c3.png -------------------------------------------------------------------------------- /src/pages/index/sections/catergories/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/catergories/index.tsx -------------------------------------------------------------------------------- /src/pages/index/sections/catergories/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/catergories/styles.module.scss -------------------------------------------------------------------------------- /src/pages/index/sections/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/index.tsx -------------------------------------------------------------------------------- /src/pages/index/sections/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/index/sections/styles.module.scss -------------------------------------------------------------------------------- /src/pages/order/cart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/order/cart/index.tsx -------------------------------------------------------------------------------- /src/pages/order/cart/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/order/cart/styles.module.scss -------------------------------------------------------------------------------- /src/pages/order/checkout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/order/checkout/index.tsx -------------------------------------------------------------------------------- /src/pages/order/checkout/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/order/checkout/styles.module.scss -------------------------------------------------------------------------------- /src/pages/order/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/order/index.tsx -------------------------------------------------------------------------------- /src/pages/order/result/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/order/result/index.tsx -------------------------------------------------------------------------------- /src/pages/order/result/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/order/result/styles.module.scss -------------------------------------------------------------------------------- /src/pages/profile/aside/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/profile/aside/index.tsx -------------------------------------------------------------------------------- /src/pages/profile/aside/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/profile/aside/styles.module.scss -------------------------------------------------------------------------------- /src/pages/profile/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/profile/config.ts -------------------------------------------------------------------------------- /src/pages/profile/content/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/profile/content/index.tsx -------------------------------------------------------------------------------- /src/pages/profile/content/section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/profile/content/section/index.tsx -------------------------------------------------------------------------------- /src/pages/profile/content/section/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/profile/content/section/styles.module.scss -------------------------------------------------------------------------------- /src/pages/profile/content/styles.module.scss: -------------------------------------------------------------------------------- 1 | .root { 2 | margin: 0 20px; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/profile/index.tsx -------------------------------------------------------------------------------- /src/pages/profile/lib.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/profile/lib.tsx -------------------------------------------------------------------------------- /src/pages/profile/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/profile/sidebar/index.tsx -------------------------------------------------------------------------------- /src/pages/profile/sidebar/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/pages/profile/sidebar/styles.module.scss -------------------------------------------------------------------------------- /src/pages/profile/styles.module.scss: -------------------------------------------------------------------------------- 1 | .root {} 2 | -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/react-app-env.d.ts -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/checkout/coffeeshops.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/checkout/coffeeshops.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/checkout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/checkout/index.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/checkout/orders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/checkout/orders.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/checkout/reservations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/checkout/reservations.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/index.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/library/authors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/library/authors.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/library/books.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/library/books.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/library/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/library/categories.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/library/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/library/index.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/library/publishers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/library/publishers.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/users/index.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/users/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/users/roles.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/users/user-books.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/users/user-books.ts -------------------------------------------------------------------------------- /src/shared/api/fixtures/users/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/fixtures/users/users.ts -------------------------------------------------------------------------------- /src/shared/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/index.ts -------------------------------------------------------------------------------- /src/shared/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/api/types.ts -------------------------------------------------------------------------------- /src/shared/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/config.ts -------------------------------------------------------------------------------- /src/shared/lib/alert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/lib/alert/index.ts -------------------------------------------------------------------------------- /src/shared/lib/browser/create-persist-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/lib/browser/create-persist-store.ts -------------------------------------------------------------------------------- /src/shared/lib/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/lib/browser/index.ts -------------------------------------------------------------------------------- /src/shared/lib/browser/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/lib/browser/use-local-storage.ts -------------------------------------------------------------------------------- /src/shared/lib/dom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/lib/dom/index.ts -------------------------------------------------------------------------------- /src/shared/lib/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/lib/hooks/index.ts -------------------------------------------------------------------------------- /src/shared/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/lib/index.ts -------------------------------------------------------------------------------- /src/shared/lib/string/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/lib/string/index.ts -------------------------------------------------------------------------------- /src/shared/styles/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/styles/mixins.scss -------------------------------------------------------------------------------- /src/shared/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/ui/index.ts -------------------------------------------------------------------------------- /src/shared/ui/skeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/ui/skeleton/index.tsx -------------------------------------------------------------------------------- /src/shared/ui/skeleton/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/ui/skeleton/styles.module.scss -------------------------------------------------------------------------------- /src/shared/ui/tile/group/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/ui/tile/group/index.tsx -------------------------------------------------------------------------------- /src/shared/ui/tile/group/styles.module.scss: -------------------------------------------------------------------------------- 1 | .root { 2 | } 3 | -------------------------------------------------------------------------------- /src/shared/ui/tile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/ui/tile/index.ts -------------------------------------------------------------------------------- /src/shared/ui/tile/view/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/ui/tile/view/index.tsx -------------------------------------------------------------------------------- /src/shared/ui/tile/view/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/shared/ui/tile/view/styles.module.scss -------------------------------------------------------------------------------- /src/widgets/footer/index.ts: -------------------------------------------------------------------------------- 1 | export { default as Footer } from "./ui"; 2 | -------------------------------------------------------------------------------- /src/widgets/footer/ui/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/widgets/footer/ui/index.tsx -------------------------------------------------------------------------------- /src/widgets/footer/ui/styles.module.scss: -------------------------------------------------------------------------------- 1 | .root { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /src/widgets/header/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/widgets/header/index.ts -------------------------------------------------------------------------------- /src/widgets/header/model/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/widgets/header/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/widgets/header/params.ts -------------------------------------------------------------------------------- /src/widgets/header/ui/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/widgets/header/ui/index.tsx -------------------------------------------------------------------------------- /src/widgets/header/ui/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/widgets/header/ui/logo.svg -------------------------------------------------------------------------------- /src/widgets/header/ui/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/widgets/header/ui/search/index.tsx -------------------------------------------------------------------------------- /src/widgets/header/ui/sticky/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/widgets/header/ui/sticky/index.tsx -------------------------------------------------------------------------------- /src/widgets/header/ui/sticky/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/widgets/header/ui/sticky/styles.module.scss -------------------------------------------------------------------------------- /src/widgets/header/ui/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/src/widgets/header/ui/styles.module.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/select-name/sharead-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------