├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.tsx ├── assets │ ├── logo.png │ ├── svg │ │ ├── announce.svg │ │ ├── chat.svg │ │ ├── clock.svg │ │ └── gift.svg │ └── user.png ├── components │ ├── big-icon-button.tsx │ ├── filled-button.tsx │ ├── modal │ │ └── modal.tsx │ ├── outlined-button.tsx │ └── sidebar │ │ ├── channel-tile.tsx │ │ ├── message-tile.tsx │ │ └── sidebar.tsx ├── index.css ├── main.tsx ├── pages │ ├── channel │ │ └── channel.tsx │ ├── direct-message │ │ └── direct-message.tsx │ └── home │ │ ├── home.tsx │ │ └── search-modal.tsx ├── static-data │ └── index.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/assets/svg/announce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/assets/svg/announce.svg -------------------------------------------------------------------------------- /src/assets/svg/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/assets/svg/chat.svg -------------------------------------------------------------------------------- /src/assets/svg/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/assets/svg/clock.svg -------------------------------------------------------------------------------- /src/assets/svg/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/assets/svg/gift.svg -------------------------------------------------------------------------------- /src/assets/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/assets/user.png -------------------------------------------------------------------------------- /src/components/big-icon-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/components/big-icon-button.tsx -------------------------------------------------------------------------------- /src/components/filled-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/components/filled-button.tsx -------------------------------------------------------------------------------- /src/components/modal/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/components/modal/modal.tsx -------------------------------------------------------------------------------- /src/components/outlined-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/components/outlined-button.tsx -------------------------------------------------------------------------------- /src/components/sidebar/channel-tile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/components/sidebar/channel-tile.tsx -------------------------------------------------------------------------------- /src/components/sidebar/message-tile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/components/sidebar/message-tile.tsx -------------------------------------------------------------------------------- /src/components/sidebar/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/components/sidebar/sidebar.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/channel/channel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/pages/channel/channel.tsx -------------------------------------------------------------------------------- /src/pages/direct-message/direct-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/pages/direct-message/direct-message.tsx -------------------------------------------------------------------------------- /src/pages/home/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/pages/home/home.tsx -------------------------------------------------------------------------------- /src/pages/home/search-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/pages/home/search-modal.tsx -------------------------------------------------------------------------------- /src/static-data/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/src/static-data/index.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wakhiwemathuthu/threadsocket/HEAD/vite.config.ts --------------------------------------------------------------------------------