├── .all-contributorsrc ├── .editorconfig ├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── .prettierignore ├── .prettierrc ├── Contributing.md ├── FETCH_HEAD ├── LICENSE ├── README.md ├── components.json ├── index.html ├── package.json ├── postcss.config.js ├── public ├── SamayBM.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── pwa-192x192.png ├── pwa-512x512.png ├── pwa-maskable-192x192.png ├── pwa-maskable-512x512.png └── vite.svg ├── src ├── App.tsx ├── assets │ ├── SamayBM.webp │ ├── Screenshot_2024-08-02_at_11.11.12_AM.png │ ├── blunder.webp │ ├── bm.jpg │ ├── bmuniverse.webp │ ├── cbi.svg │ ├── chesscomlogo.webp │ ├── diamond.webp │ ├── noob.jpg │ ├── pieces │ │ ├── bb.png │ │ ├── bk.png │ │ ├── bn.png │ │ ├── bp.png │ │ ├── bq.png │ │ ├── br.png │ │ ├── wb.png │ │ ├── wk.png │ │ ├── wn.png │ │ ├── wp.png │ │ ├── wq.png │ │ └── wr.png │ ├── profile.webp │ ├── react.svg │ ├── samayheader.webp │ ├── signup.webp │ └── sounds │ │ ├── move-capture.mp3 │ │ ├── move-castle.mp3 │ │ ├── move-check.mp3 │ │ ├── move-promote.mp3 │ │ └── move-self.mp3 ├── components │ ├── Background.tsx │ ├── ChatHoverCard.tsx │ ├── CookieConsentWrapper.tsx │ ├── ErrorBoundary.tsx │ ├── EvaluationBar.tsx │ ├── PlayerHoverCard.tsx │ ├── ShareGamepopup.tsx │ ├── comingsoon.tsx │ ├── input-box-with-label.tsx │ ├── landing │ │ ├── PredictionCard.tsx │ │ └── navbar.tsx │ ├── pgn-viewer │ │ ├── board.tsx │ │ ├── movetable.tsx │ │ └── timer.tsx │ ├── sidebar │ │ ├── Header.tsx │ │ ├── MobileMenu.tsx │ │ └── Sidebar.tsx │ ├── signup │ │ ├── ChessVerificationStep.tsx │ │ ├── GoogleSignUpButton.tsx │ │ └── VerificationCodeDisplay.tsx │ └── ui │ │ ├── .switch.tsx.icloud │ │ ├── Alert.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── hover-card.tsx │ │ ├── icons.tsx │ │ ├── input.tsx │ │ ├── sheet.tsx │ │ ├── slider.tsx │ │ ├── table.tsx │ │ └── tabs.tsx ├── hooks │ ├── useGoogleAuth.ts │ └── useRouteChange.ts ├── lib │ ├── jwtDecoder.ts │ └── utils.ts ├── main.tsx ├── pages │ ├── 404NotFound.tsx │ ├── BulletinBoard.tsx │ ├── Chat.tsx │ ├── ChessNews.tsx │ ├── ChessTutorials.tsx │ ├── Community.tsx │ ├── GTE.tsx │ ├── Gift.tsx │ ├── Landing.tsx │ ├── Learn.tsx │ ├── PrivacyPolicy.tsx │ ├── SignUp.tsx │ ├── SignUpCallback.tsx │ ├── SomethingWentWrong.tsx │ ├── Subscribe.tsx │ ├── ThankYou.tsx │ └── Welcome.tsx ├── services │ ├── auth.ts │ ├── chessApi.ts │ ├── communityApi.ts │ ├── gamefetcher.ts │ └── getclock.ts ├── styles │ └── globals.css └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json └── vite.config.ts /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/.prettierrc -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/Contributing.md -------------------------------------------------------------------------------- /FETCH_HEAD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/components.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/SamayBM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/public/SamayBM.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/public/pwa-192x192.png -------------------------------------------------------------------------------- /public/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/public/pwa-512x512.png -------------------------------------------------------------------------------- /public/pwa-maskable-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/public/pwa-maskable-192x192.png -------------------------------------------------------------------------------- /public/pwa-maskable-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/public/pwa-maskable-512x512.png -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/SamayBM.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/SamayBM.webp -------------------------------------------------------------------------------- /src/assets/Screenshot_2024-08-02_at_11.11.12_AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/Screenshot_2024-08-02_at_11.11.12_AM.png -------------------------------------------------------------------------------- /src/assets/blunder.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/blunder.webp -------------------------------------------------------------------------------- /src/assets/bm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/bm.jpg -------------------------------------------------------------------------------- /src/assets/bmuniverse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/bmuniverse.webp -------------------------------------------------------------------------------- /src/assets/cbi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/cbi.svg -------------------------------------------------------------------------------- /src/assets/chesscomlogo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/chesscomlogo.webp -------------------------------------------------------------------------------- /src/assets/diamond.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/diamond.webp -------------------------------------------------------------------------------- /src/assets/noob.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/noob.jpg -------------------------------------------------------------------------------- /src/assets/pieces/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/pieces/bb.png -------------------------------------------------------------------------------- /src/assets/pieces/bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/pieces/bk.png -------------------------------------------------------------------------------- /src/assets/pieces/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/pieces/bn.png -------------------------------------------------------------------------------- /src/assets/pieces/bp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/pieces/bp.png -------------------------------------------------------------------------------- /src/assets/pieces/bq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/pieces/bq.png -------------------------------------------------------------------------------- /src/assets/pieces/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/pieces/br.png -------------------------------------------------------------------------------- /src/assets/pieces/wb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/pieces/wb.png -------------------------------------------------------------------------------- /src/assets/pieces/wk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/pieces/wk.png -------------------------------------------------------------------------------- /src/assets/pieces/wn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/pieces/wn.png -------------------------------------------------------------------------------- /src/assets/pieces/wp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/pieces/wp.png -------------------------------------------------------------------------------- /src/assets/pieces/wq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/pieces/wq.png -------------------------------------------------------------------------------- /src/assets/pieces/wr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/pieces/wr.png -------------------------------------------------------------------------------- /src/assets/profile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/profile.webp -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/assets/samayheader.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/samayheader.webp -------------------------------------------------------------------------------- /src/assets/signup.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/signup.webp -------------------------------------------------------------------------------- /src/assets/sounds/move-capture.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/sounds/move-capture.mp3 -------------------------------------------------------------------------------- /src/assets/sounds/move-castle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/sounds/move-castle.mp3 -------------------------------------------------------------------------------- /src/assets/sounds/move-check.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/sounds/move-check.mp3 -------------------------------------------------------------------------------- /src/assets/sounds/move-promote.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/sounds/move-promote.mp3 -------------------------------------------------------------------------------- /src/assets/sounds/move-self.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/assets/sounds/move-self.mp3 -------------------------------------------------------------------------------- /src/components/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/Background.tsx -------------------------------------------------------------------------------- /src/components/ChatHoverCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ChatHoverCard.tsx -------------------------------------------------------------------------------- /src/components/CookieConsentWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/CookieConsentWrapper.tsx -------------------------------------------------------------------------------- /src/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /src/components/EvaluationBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/EvaluationBar.tsx -------------------------------------------------------------------------------- /src/components/PlayerHoverCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/PlayerHoverCard.tsx -------------------------------------------------------------------------------- /src/components/ShareGamepopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ShareGamepopup.tsx -------------------------------------------------------------------------------- /src/components/comingsoon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/comingsoon.tsx -------------------------------------------------------------------------------- /src/components/input-box-with-label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/input-box-with-label.tsx -------------------------------------------------------------------------------- /src/components/landing/PredictionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/landing/PredictionCard.tsx -------------------------------------------------------------------------------- /src/components/landing/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/landing/navbar.tsx -------------------------------------------------------------------------------- /src/components/pgn-viewer/board.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/pgn-viewer/board.tsx -------------------------------------------------------------------------------- /src/components/pgn-viewer/movetable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/pgn-viewer/movetable.tsx -------------------------------------------------------------------------------- /src/components/pgn-viewer/timer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/pgn-viewer/timer.tsx -------------------------------------------------------------------------------- /src/components/sidebar/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/sidebar/Header.tsx -------------------------------------------------------------------------------- /src/components/sidebar/MobileMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/sidebar/MobileMenu.tsx -------------------------------------------------------------------------------- /src/components/sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/signup/ChessVerificationStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/signup/ChessVerificationStep.tsx -------------------------------------------------------------------------------- /src/components/signup/GoogleSignUpButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/signup/GoogleSignUpButton.tsx -------------------------------------------------------------------------------- /src/components/signup/VerificationCodeDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/signup/VerificationCodeDisplay.tsx -------------------------------------------------------------------------------- /src/components/ui/.switch.tsx.icloud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/.switch.tsx.icloud -------------------------------------------------------------------------------- /src/components/ui/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/Alert.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/icons.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/hooks/useGoogleAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/hooks/useGoogleAuth.ts -------------------------------------------------------------------------------- /src/hooks/useRouteChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/hooks/useRouteChange.ts -------------------------------------------------------------------------------- /src/lib/jwtDecoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/lib/jwtDecoder.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/404NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/404NotFound.tsx -------------------------------------------------------------------------------- /src/pages/BulletinBoard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/BulletinBoard.tsx -------------------------------------------------------------------------------- /src/pages/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/Chat.tsx -------------------------------------------------------------------------------- /src/pages/ChessNews.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/ChessNews.tsx -------------------------------------------------------------------------------- /src/pages/ChessTutorials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/ChessTutorials.tsx -------------------------------------------------------------------------------- /src/pages/Community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/Community.tsx -------------------------------------------------------------------------------- /src/pages/GTE.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/GTE.tsx -------------------------------------------------------------------------------- /src/pages/Gift.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/Gift.tsx -------------------------------------------------------------------------------- /src/pages/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/Landing.tsx -------------------------------------------------------------------------------- /src/pages/Learn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/Learn.tsx -------------------------------------------------------------------------------- /src/pages/PrivacyPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/PrivacyPolicy.tsx -------------------------------------------------------------------------------- /src/pages/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/SignUp.tsx -------------------------------------------------------------------------------- /src/pages/SignUpCallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/SignUpCallback.tsx -------------------------------------------------------------------------------- /src/pages/SomethingWentWrong.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/SomethingWentWrong.tsx -------------------------------------------------------------------------------- /src/pages/Subscribe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/Subscribe.tsx -------------------------------------------------------------------------------- /src/pages/ThankYou.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/ThankYou.tsx -------------------------------------------------------------------------------- /src/pages/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/pages/Welcome.tsx -------------------------------------------------------------------------------- /src/services/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/services/auth.ts -------------------------------------------------------------------------------- /src/services/chessApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/services/chessApi.ts -------------------------------------------------------------------------------- /src/services/communityApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/services/communityApi.ts -------------------------------------------------------------------------------- /src/services/gamefetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/services/gamefetcher.ts -------------------------------------------------------------------------------- /src/services/getclock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/services/getclock.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bot-Rakshit/bm_frontend/HEAD/vite.config.ts --------------------------------------------------------------------------------