├── .gitignore ├── .vscode └── settings.json ├── Blog reader - day 2 └── blread │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── 2nd.jpg │ ├── 3rd.jpg │ ├── 4th.jpg │ ├── index.html │ ├── main.jpg │ └── p ico.ico │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ ├── BlogNav.js │ ├── Post1.js │ ├── Post2.js │ ├── Post3.js │ ├── Post4.js │ └── Posts.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── Ecommerce - day 4 └── ecomrce │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── assets │ │ ├── R.png │ │ ├── adidaslogo.jpg │ │ ├── banner-v-1.webp │ │ ├── banner-v-10.webp │ │ ├── banner-v-11.webp │ │ ├── banner-v-2.webp │ │ ├── banner-v-3.webp │ │ ├── banner-v-4.webp │ │ ├── banner-v-5.webp │ │ ├── banner-v-6.webp │ │ ├── banner-v-7.webp │ │ ├── banner-v-8.webp │ │ ├── banner-v-9.webp │ │ ├── cover-screen-img.jpg │ │ ├── hrx.png │ │ ├── kidsBanner.jpg │ │ ├── nikelogo.png │ │ ├── pumalogo.png │ │ ├── reebok.png │ │ ├── sq-1.jpg │ │ └── sq-5.jpg │ └── index.html │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Components │ ├── CartCards │ │ ├── BillCardForCart.jsx │ │ ├── Card.css │ │ ├── CardUtils.js │ │ └── ProductCardForCart.jsx │ └── index.js │ ├── Context │ ├── ProductListContext.js │ └── index.js │ ├── Pages │ ├── CartPage │ │ ├── CartPage.css │ │ └── CartPage.jsx │ ├── Home │ │ ├── Home.css │ │ └── Home.jsx │ └── index.js │ ├── index.css │ └── index.js ├── Mern Auth day-4 ├── client │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── Pages │ │ │ ├── Home.jsx │ │ │ ├── Login.jsx │ │ │ └── Register.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ └── Navbar.jsx │ │ ├── index.css │ │ └── main.jsx │ └── vite.config.js └── server │ ├── controllers │ └── authController.js │ ├── index.js │ ├── models │ └── user.js │ ├── package-lock.json │ ├── package.json │ └── routes │ └── authRoutes.js ├── NotionClone-Day-5 ├── .eslintrc.json ├── .gitignore ├── README.md ├── app │ ├── (main) │ │ ├── (routes) │ │ │ └── documents │ │ │ │ ├── [documentId] │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ ├── _components │ │ │ ├── banner.tsx │ │ │ ├── document-list.tsx │ │ │ ├── item.tsx │ │ │ ├── menu.tsx │ │ │ ├── navbar.tsx │ │ │ ├── navigation.tsx │ │ │ ├── publish.tsx │ │ │ ├── title.tsx │ │ │ ├── trash-box.tsx │ │ │ └── user-item.tsx │ │ └── layout.tsx │ ├── (marketing) │ │ ├── _components │ │ │ ├── footer.tsx │ │ │ ├── heading.tsx │ │ │ ├── heroes.tsx │ │ │ ├── logo.tsx │ │ │ └── navbar.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── (public) │ │ └── (routes) │ │ │ └── preview │ │ │ └── [documentId] │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ ├── api │ │ └── edgestore │ │ │ └── [...edgestore] │ │ │ └── route.ts │ ├── error.tsx │ ├── globals.css │ ├── layout.tsx │ └── logo.png ├── components.json ├── components │ ├── cover.tsx │ ├── editor.tsx │ ├── icon-picker.tsx │ ├── modals │ │ ├── confirm-modal.tsx │ │ ├── cover-image-modal.tsx │ │ └── settings-modal.tsx │ ├── mode-toggle.tsx │ ├── providers │ │ ├── convex-provider.tsx │ │ ├── modal-provider.tsx │ │ └── theme-provider.tsx │ ├── search-command.tsx │ ├── single-image-dropzone.tsx │ ├── spinner.tsx │ ├── toolbar.tsx │ └── ui │ │ ├── alert-dialog.tsx │ │ ├── avatar.tsx │ │ ├── button.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── popover.tsx │ │ └── skeleton.tsx ├── convex │ ├── README.md │ ├── _generated │ │ ├── api.d.ts │ │ ├── api.js │ │ ├── dataModel.d.ts │ │ ├── server.d.ts │ │ └── server.js │ ├── auth.config.js │ ├── documents.ts │ ├── schema.ts │ └── tsconfig.json ├── hooks │ ├── use-cover-image.tsx │ ├── use-origin.tsx │ ├── use-scroll-top.tsx │ ├── use-search.tsx │ └── use-setting.tsx ├── lib │ ├── edgestore.ts │ └── utils.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── documents-dark.png │ ├── documents.png │ ├── empty-dark.png │ ├── empty.png │ ├── error-dark.png │ ├── error.png │ ├── logo-dark.svg │ ├── logo.svg │ ├── next.svg │ ├── reading-dark.png │ ├── reading.png │ └── vercel.svg ├── tailwind.config.ts └── tsconfig.json ├── README.md ├── ToDoList - day 1 ├── backend │ ├── models │ │ └── todoList.js │ ├── package-lock.json │ ├── package.json │ └── server.js └── frontend │ └── tdlist │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── index.html │ └── notes.ico │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ └── Todo.js │ ├── index.css │ ├── index.js │ └── logo.svg ├── Weather App - day 3 └── weathapp │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── erascript ├── .eslintrc.json ├── .gitignore ├── README.md ├── app │ ├── (dashboard) │ │ ├── _components │ │ │ ├── board-card │ │ │ │ ├── footer.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── overlay.tsx │ │ │ ├── board-list.tsx │ │ │ ├── empty-boards.tsx │ │ │ ├── empty-favorites.tsx │ │ │ ├── empty-org.tsx │ │ │ ├── empty-search.tsx │ │ │ ├── invite-button.tsx │ │ │ ├── navbar.tsx │ │ │ ├── new-board-button.tsx │ │ │ ├── org-sidebar.tsx │ │ │ ├── search-input.tsx │ │ │ └── sidebar │ │ │ │ ├── index.tsx │ │ │ │ ├── items.tsx │ │ │ │ ├── list.tsx │ │ │ │ └── new-button.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── [boardId] │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ └── layout.tsx ├── components.json ├── components │ ├── auth │ │ └── loading.tsx │ ├── hint.tsx │ └── ui │ │ ├── button.tsx │ │ ├── dialog.tsx │ │ ├── input.tsx │ │ ├── skeleton.tsx │ │ ├── sonner.tsx │ │ └── tooltip.tsx ├── convex │ ├── README.md │ ├── _generated │ │ ├── api.d.ts │ │ ├── api.js │ │ ├── dataModel.d.ts │ │ ├── server.d.ts │ │ └── server.js │ ├── auth.config.js │ ├── board.ts │ ├── boards.ts │ ├── schema.ts │ └── tsconfig.json ├── hooks │ └── use-api-mutation.ts ├── lib │ └── utils.ts ├── middleware.ts ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.js ├── providers │ ├── convex-client-provider.tsx │ └── modal-provider.tsx ├── public │ ├── blbg.svg │ ├── blue e.svg │ └── e.svg ├── tailwind.config.ts └── tsconfig.json └── twitch-clone └── twtcln ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── actions ├── block.ts ├── follow.ts ├── ingress.ts ├── stream.ts ├── token.ts └── user.ts ├── app ├── (auth) │ ├── _components │ │ └── logo.tsx │ ├── layout.tsx │ ├── sign-in │ │ └── [[...sign-in]] │ │ │ └── page.tsx │ └── sign-up │ │ └── [[...sign-up]] │ │ └── page.tsx ├── (browse) │ ├── (home) │ │ ├── _components │ │ │ ├── result-card.tsx │ │ │ └── results.tsx │ │ └── page.tsx │ ├── [username] │ │ ├── _components │ │ │ └── actions.tsx │ │ ├── error.tsx │ │ ├── loading.tsx │ │ ├── not-found.tsx │ │ └── page.tsx │ ├── _components │ │ ├── container.tsx │ │ ├── navbar │ │ │ ├── actions.tsx │ │ │ ├── index.tsx │ │ │ ├── logo.tsx │ │ │ └── search.tsx │ │ └── sidebar │ │ │ ├── following.tsx │ │ │ ├── index.tsx │ │ │ ├── recommended.tsx │ │ │ ├── toggle.tsx │ │ │ ├── user-item.tsx │ │ │ └── wrapper.tsx │ ├── layout.tsx │ └── search │ │ ├── _components │ │ ├── result-card.tsx │ │ └── results.tsx │ │ └── page.tsx ├── (dashboard) │ └── u │ │ └── [username] │ │ ├── (home) │ │ ├── loading.tsx │ │ └── page.tsx │ │ ├── _components │ │ ├── container.tsx │ │ ├── navbar │ │ │ ├── actions.tsx │ │ │ ├── index.tsx │ │ │ └── logo.tsx │ │ └── sidebar │ │ │ ├── index.tsx │ │ │ ├── nav-item.tsx │ │ │ ├── navigation.tsx │ │ │ ├── toggle.tsx │ │ │ └── wrapper.tsx │ │ ├── chat │ │ ├── _components │ │ │ └── toggle-card.tsx │ │ ├── loading.tsx │ │ └── page.tsx │ │ ├── community │ │ ├── _components │ │ │ ├── columns.tsx │ │ │ ├── data-table.tsx │ │ │ └── unblock-button.tsx │ │ └── page.tsx │ │ ├── keys │ │ ├── _components │ │ │ ├── connect-modal.tsx │ │ │ ├── copy-button.tsx │ │ │ ├── key-card.tsx │ │ │ └── url-card.tsx │ │ └── page.tsx │ │ └── layout.tsx ├── api │ ├── uploadthing │ │ ├── core.ts │ │ └── route.ts │ └── webhooks │ │ ├── clerk │ │ └── route.ts │ │ └── livekit │ │ └── route.ts ├── error.tsx ├── favicon.ico ├── globals.css ├── layout.tsx └── not-found.tsx ├── components.json ├── components ├── hint.tsx ├── live-badge.tsx ├── stream-player │ ├── about-card.tsx │ ├── actions.tsx │ ├── bio-modal.tsx │ ├── chat-community.tsx │ ├── chat-form.tsx │ ├── chat-header.tsx │ ├── chat-info.tsx │ ├── chat-list.tsx │ ├── chat-message.tsx │ ├── chat-toggle.tsx │ ├── chat.tsx │ ├── community-item.tsx │ ├── fullscreen-control.tsx │ ├── header.tsx │ ├── index.tsx │ ├── info-card.tsx │ ├── info-modal.tsx │ ├── live-video.tsx │ ├── loading-video.tsx │ ├── offline-video.tsx │ ├── variant-toggle.tsx │ ├── video.tsx │ └── volume-control.tsx ├── theme-provider.tsx ├── thumbnail.tsx ├── ui │ ├── alert.tsx │ ├── avatar.tsx │ ├── button.tsx │ ├── dialog.tsx │ ├── input.tsx │ ├── label.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── textarea.tsx │ └── tooltip.tsx ├── user-avatar.tsx └── verified-mark.tsx ├── hooks └── use-viewer-token.ts ├── lib ├── auth-service.ts ├── block-service.ts ├── db.ts ├── feed-service.ts ├── follow-service.ts ├── recommended-service.ts ├── search-service.ts ├── stream-service.ts ├── uploadthing.ts ├── user-service.ts └── utils.ts ├── middleware.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── prisma └── schema.prisma ├── public ├── laughing-cat.gif ├── my-honest-reaction-my.gif ├── navlogo.png ├── setting.svg └── startLogo.png ├── store ├── use-chat-sidebar.ts ├── use-creator-sidebar.ts └── use-sidebar.ts ├── tailwind.config.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | .env 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } 4 | -------------------------------------------------------------------------------- /Blog reader - day 2/blread/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/.gitignore -------------------------------------------------------------------------------- /Blog reader - day 2/blread/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/README.md -------------------------------------------------------------------------------- /Blog reader - day 2/blread/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/package-lock.json -------------------------------------------------------------------------------- /Blog reader - day 2/blread/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/package.json -------------------------------------------------------------------------------- /Blog reader - day 2/blread/public/2nd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/public/2nd.jpg -------------------------------------------------------------------------------- /Blog reader - day 2/blread/public/3rd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/public/3rd.jpg -------------------------------------------------------------------------------- /Blog reader - day 2/blread/public/4th.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/public/4th.jpg -------------------------------------------------------------------------------- /Blog reader - day 2/blread/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/public/index.html -------------------------------------------------------------------------------- /Blog reader - day 2/blread/public/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/public/main.jpg -------------------------------------------------------------------------------- /Blog reader - day 2/blread/public/p ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/public/p ico.ico -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/App.css -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/App.js -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/App.test.js -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/components/BlogNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/components/BlogNav.js -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/components/Post1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/components/Post1.js -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/components/Post2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/components/Post2.js -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/components/Post3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/components/Post3.js -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/components/Post4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/components/Post4.js -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/components/Posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/components/Posts.js -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/index.css -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/index.js -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/logo.svg -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/reportWebVitals.js -------------------------------------------------------------------------------- /Blog reader - day 2/blread/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Blog reader - day 2/blread/src/setupTests.js -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/.gitignore -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/README.md -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/package-lock.json -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/package.json -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/R.png -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/adidaslogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/adidaslogo.jpg -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/banner-v-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/banner-v-1.webp -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/banner-v-10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/banner-v-10.webp -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/banner-v-11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/banner-v-11.webp -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/banner-v-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/banner-v-2.webp -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/banner-v-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/banner-v-3.webp -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/banner-v-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/banner-v-4.webp -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/banner-v-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/banner-v-5.webp -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/banner-v-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/banner-v-6.webp -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/banner-v-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/banner-v-7.webp -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/banner-v-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/banner-v-8.webp -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/banner-v-9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/banner-v-9.webp -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/cover-screen-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/cover-screen-img.jpg -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/hrx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/hrx.png -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/kidsBanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/kidsBanner.jpg -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/nikelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/nikelogo.png -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/pumalogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/pumalogo.png -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/reebok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/reebok.png -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/sq-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/sq-1.jpg -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/assets/sq-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/assets/sq-5.jpg -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/public/index.html -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/App.css -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/App.js -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/App.test.js -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/Components/CartCards/BillCardForCart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/Components/CartCards/BillCardForCart.jsx -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/Components/CartCards/Card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/Components/CartCards/Card.css -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/Components/CartCards/CardUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/Components/CartCards/CardUtils.js -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/Components/CartCards/ProductCardForCart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/Components/CartCards/ProductCardForCart.jsx -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/Components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/Components/index.js -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/Context/ProductListContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/Context/ProductListContext.js -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/Context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/Context/index.js -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/Pages/CartPage/CartPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/Pages/CartPage/CartPage.css -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/Pages/CartPage/CartPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/Pages/CartPage/CartPage.jsx -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/Pages/Home/Home.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/Pages/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/Pages/Home/Home.jsx -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/Pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/Pages/index.js -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/index.css -------------------------------------------------------------------------------- /Ecommerce - day 4/ecomrce/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Ecommerce - day 4/ecomrce/src/index.js -------------------------------------------------------------------------------- /Mern Auth day-4/client/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/.eslintrc.cjs -------------------------------------------------------------------------------- /Mern Auth day-4/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/.gitignore -------------------------------------------------------------------------------- /Mern Auth day-4/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/README.md -------------------------------------------------------------------------------- /Mern Auth day-4/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/index.html -------------------------------------------------------------------------------- /Mern Auth day-4/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/package-lock.json -------------------------------------------------------------------------------- /Mern Auth day-4/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/package.json -------------------------------------------------------------------------------- /Mern Auth day-4/client/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/public/vite.svg -------------------------------------------------------------------------------- /Mern Auth day-4/client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/src/App.css -------------------------------------------------------------------------------- /Mern Auth day-4/client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/src/App.jsx -------------------------------------------------------------------------------- /Mern Auth day-4/client/src/Pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/src/Pages/Home.jsx -------------------------------------------------------------------------------- /Mern Auth day-4/client/src/Pages/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/src/Pages/Login.jsx -------------------------------------------------------------------------------- /Mern Auth day-4/client/src/Pages/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/src/Pages/Register.jsx -------------------------------------------------------------------------------- /Mern Auth day-4/client/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/src/assets/react.svg -------------------------------------------------------------------------------- /Mern Auth day-4/client/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/src/components/Navbar.jsx -------------------------------------------------------------------------------- /Mern Auth day-4/client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/src/index.css -------------------------------------------------------------------------------- /Mern Auth day-4/client/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/src/main.jsx -------------------------------------------------------------------------------- /Mern Auth day-4/client/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/client/vite.config.js -------------------------------------------------------------------------------- /Mern Auth day-4/server/controllers/authController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/server/controllers/authController.js -------------------------------------------------------------------------------- /Mern Auth day-4/server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/server/index.js -------------------------------------------------------------------------------- /Mern Auth day-4/server/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/server/models/user.js -------------------------------------------------------------------------------- /Mern Auth day-4/server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/server/package-lock.json -------------------------------------------------------------------------------- /Mern Auth day-4/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/server/package.json -------------------------------------------------------------------------------- /Mern Auth day-4/server/routes/authRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Mern Auth day-4/server/routes/authRoutes.js -------------------------------------------------------------------------------- /NotionClone-Day-5/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /NotionClone-Day-5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/.gitignore -------------------------------------------------------------------------------- /NotionClone-Day-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/README.md -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/(routes)/documents/[documentId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/(routes)/documents/[documentId]/page.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/(routes)/documents/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/(routes)/documents/page.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/_components/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/_components/banner.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/_components/document-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/_components/document-list.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/_components/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/_components/item.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/_components/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/_components/menu.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/_components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/_components/navbar.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/_components/navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/_components/navigation.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/_components/publish.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/_components/publish.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/_components/title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/_components/title.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/_components/trash-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/_components/trash-box.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/_components/user-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/_components/user-item.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(main)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(main)/layout.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(marketing)/_components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(marketing)/_components/footer.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(marketing)/_components/heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(marketing)/_components/heading.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(marketing)/_components/heroes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(marketing)/_components/heroes.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(marketing)/_components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(marketing)/_components/logo.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(marketing)/_components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(marketing)/_components/navbar.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(marketing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(marketing)/layout.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(marketing)/page.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(public)/(routes)/preview/[documentId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(public)/(routes)/preview/[documentId]/layout.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/(public)/(routes)/preview/[documentId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/(public)/(routes)/preview/[documentId]/page.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/api/edgestore/[...edgestore]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/api/edgestore/[...edgestore]/route.ts -------------------------------------------------------------------------------- /NotionClone-Day-5/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/error.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/globals.css -------------------------------------------------------------------------------- /NotionClone-Day-5/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/layout.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/app/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/app/logo.png -------------------------------------------------------------------------------- /NotionClone-Day-5/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components.json -------------------------------------------------------------------------------- /NotionClone-Day-5/components/cover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/cover.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/editor.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/icon-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/icon-picker.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/modals/confirm-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/modals/confirm-modal.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/modals/cover-image-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/modals/cover-image-modal.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/modals/settings-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/modals/settings-modal.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/mode-toggle.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/providers/convex-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/providers/convex-provider.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/providers/modal-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/providers/modal-provider.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/providers/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/providers/theme-provider.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/search-command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/search-command.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/single-image-dropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/single-image-dropzone.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/spinner.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/toolbar.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/ui/avatar.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/ui/button.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/ui/command.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/ui/dialog.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/ui/input.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/ui/label.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/ui/popover.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/convex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/convex/README.md -------------------------------------------------------------------------------- /NotionClone-Day-5/convex/_generated/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/convex/_generated/api.d.ts -------------------------------------------------------------------------------- /NotionClone-Day-5/convex/_generated/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/convex/_generated/api.js -------------------------------------------------------------------------------- /NotionClone-Day-5/convex/_generated/dataModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/convex/_generated/dataModel.d.ts -------------------------------------------------------------------------------- /NotionClone-Day-5/convex/_generated/server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/convex/_generated/server.d.ts -------------------------------------------------------------------------------- /NotionClone-Day-5/convex/_generated/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/convex/_generated/server.js -------------------------------------------------------------------------------- /NotionClone-Day-5/convex/auth.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/convex/auth.config.js -------------------------------------------------------------------------------- /NotionClone-Day-5/convex/documents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/convex/documents.ts -------------------------------------------------------------------------------- /NotionClone-Day-5/convex/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/convex/schema.ts -------------------------------------------------------------------------------- /NotionClone-Day-5/convex/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/convex/tsconfig.json -------------------------------------------------------------------------------- /NotionClone-Day-5/hooks/use-cover-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/hooks/use-cover-image.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/hooks/use-origin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/hooks/use-origin.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/hooks/use-scroll-top.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/hooks/use-scroll-top.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/hooks/use-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/hooks/use-search.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/hooks/use-setting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/hooks/use-setting.tsx -------------------------------------------------------------------------------- /NotionClone-Day-5/lib/edgestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/lib/edgestore.ts -------------------------------------------------------------------------------- /NotionClone-Day-5/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/lib/utils.ts -------------------------------------------------------------------------------- /NotionClone-Day-5/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/next.config.js -------------------------------------------------------------------------------- /NotionClone-Day-5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/package-lock.json -------------------------------------------------------------------------------- /NotionClone-Day-5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/package.json -------------------------------------------------------------------------------- /NotionClone-Day-5/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/postcss.config.js -------------------------------------------------------------------------------- /NotionClone-Day-5/public/documents-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/public/documents-dark.png -------------------------------------------------------------------------------- /NotionClone-Day-5/public/documents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/public/documents.png -------------------------------------------------------------------------------- /NotionClone-Day-5/public/empty-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/public/empty-dark.png -------------------------------------------------------------------------------- /NotionClone-Day-5/public/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/public/empty.png -------------------------------------------------------------------------------- /NotionClone-Day-5/public/error-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/public/error-dark.png -------------------------------------------------------------------------------- /NotionClone-Day-5/public/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/public/error.png -------------------------------------------------------------------------------- /NotionClone-Day-5/public/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/public/logo-dark.svg -------------------------------------------------------------------------------- /NotionClone-Day-5/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/public/logo.svg -------------------------------------------------------------------------------- /NotionClone-Day-5/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/public/next.svg -------------------------------------------------------------------------------- /NotionClone-Day-5/public/reading-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/public/reading-dark.png -------------------------------------------------------------------------------- /NotionClone-Day-5/public/reading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/public/reading.png -------------------------------------------------------------------------------- /NotionClone-Day-5/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/public/vercel.svg -------------------------------------------------------------------------------- /NotionClone-Day-5/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/tailwind.config.ts -------------------------------------------------------------------------------- /NotionClone-Day-5/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/NotionClone-Day-5/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/README.md -------------------------------------------------------------------------------- /ToDoList - day 1/backend/models/todoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/backend/models/todoList.js -------------------------------------------------------------------------------- /ToDoList - day 1/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/backend/package-lock.json -------------------------------------------------------------------------------- /ToDoList - day 1/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/backend/package.json -------------------------------------------------------------------------------- /ToDoList - day 1/backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/backend/server.js -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/.gitignore -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/README.md -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/package-lock.json -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/package.json -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/public/index.html -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/public/notes.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/public/notes.ico -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/src/App.css -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/src/App.js -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/src/App.test.js -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/src/components/Todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/src/components/Todo.js -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/src/index.css -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/src/index.js -------------------------------------------------------------------------------- /ToDoList - day 1/frontend/tdlist/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/ToDoList - day 1/frontend/tdlist/src/logo.svg -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/.gitignore -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/README.md -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/package-lock.json -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/package.json -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/public/favicon.ico -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/public/index.html -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/public/logo192.png -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/public/logo512.png -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/public/manifest.json -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/public/robots.txt -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/src/App.css -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/src/App.js -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/src/App.test.js -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/src/index.css -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/src/index.js -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/src/logo.svg -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/src/reportWebVitals.js -------------------------------------------------------------------------------- /Weather App - day 3/weathapp/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/Weather App - day 3/weathapp/src/setupTests.js -------------------------------------------------------------------------------- /erascript/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /erascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/.gitignore -------------------------------------------------------------------------------- /erascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/README.md -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/board-card/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/board-card/footer.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/board-card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/board-card/index.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/board-card/overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/board-card/overlay.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/board-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/board-list.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/empty-boards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/empty-boards.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/empty-favorites.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/empty-favorites.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/empty-org.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/empty-org.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/empty-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/empty-search.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/invite-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/invite-button.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/navbar.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/new-board-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/new-board-button.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/org-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/org-sidebar.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/search-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/search-input.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/sidebar/index.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/sidebar/items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/sidebar/items.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/sidebar/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/sidebar/list.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/_components/sidebar/new-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/_components/sidebar/new-button.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/layout.tsx -------------------------------------------------------------------------------- /erascript/app/(dashboard)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/(dashboard)/page.tsx -------------------------------------------------------------------------------- /erascript/app/[boardId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/[boardId]/page.tsx -------------------------------------------------------------------------------- /erascript/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/favicon.ico -------------------------------------------------------------------------------- /erascript/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/globals.css -------------------------------------------------------------------------------- /erascript/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/app/layout.tsx -------------------------------------------------------------------------------- /erascript/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/components.json -------------------------------------------------------------------------------- /erascript/components/auth/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/components/auth/loading.tsx -------------------------------------------------------------------------------- /erascript/components/hint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/components/hint.tsx -------------------------------------------------------------------------------- /erascript/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/components/ui/button.tsx -------------------------------------------------------------------------------- /erascript/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/components/ui/dialog.tsx -------------------------------------------------------------------------------- /erascript/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/components/ui/input.tsx -------------------------------------------------------------------------------- /erascript/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /erascript/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/components/ui/sonner.tsx -------------------------------------------------------------------------------- /erascript/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /erascript/convex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/convex/README.md -------------------------------------------------------------------------------- /erascript/convex/_generated/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/convex/_generated/api.d.ts -------------------------------------------------------------------------------- /erascript/convex/_generated/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/convex/_generated/api.js -------------------------------------------------------------------------------- /erascript/convex/_generated/dataModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/convex/_generated/dataModel.d.ts -------------------------------------------------------------------------------- /erascript/convex/_generated/server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/convex/_generated/server.d.ts -------------------------------------------------------------------------------- /erascript/convex/_generated/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/convex/_generated/server.js -------------------------------------------------------------------------------- /erascript/convex/auth.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/convex/auth.config.js -------------------------------------------------------------------------------- /erascript/convex/board.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/convex/board.ts -------------------------------------------------------------------------------- /erascript/convex/boards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/convex/boards.ts -------------------------------------------------------------------------------- /erascript/convex/schema.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /erascript/convex/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/convex/tsconfig.json -------------------------------------------------------------------------------- /erascript/hooks/use-api-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/hooks/use-api-mutation.ts -------------------------------------------------------------------------------- /erascript/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/lib/utils.ts -------------------------------------------------------------------------------- /erascript/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/middleware.ts -------------------------------------------------------------------------------- /erascript/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/next.config.mjs -------------------------------------------------------------------------------- /erascript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/package-lock.json -------------------------------------------------------------------------------- /erascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/package.json -------------------------------------------------------------------------------- /erascript/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/postcss.config.js -------------------------------------------------------------------------------- /erascript/providers/convex-client-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/providers/convex-client-provider.tsx -------------------------------------------------------------------------------- /erascript/providers/modal-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/providers/modal-provider.tsx -------------------------------------------------------------------------------- /erascript/public/blbg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/public/blbg.svg -------------------------------------------------------------------------------- /erascript/public/blue e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/public/blue e.svg -------------------------------------------------------------------------------- /erascript/public/e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/public/e.svg -------------------------------------------------------------------------------- /erascript/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/tailwind.config.ts -------------------------------------------------------------------------------- /erascript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/erascript/tsconfig.json -------------------------------------------------------------------------------- /twitch-clone/twtcln/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /twitch-clone/twtcln/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/.gitignore -------------------------------------------------------------------------------- /twitch-clone/twtcln/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /twitch-clone/twtcln/README.md: -------------------------------------------------------------------------------- 1 | ## Twitch Clone 2 | -------------------------------------------------------------------------------- /twitch-clone/twtcln/actions/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/actions/block.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/actions/follow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/actions/follow.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/actions/ingress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/actions/ingress.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/actions/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/actions/stream.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/actions/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/actions/token.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/actions/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/actions/user.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(auth)/_components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(auth)/_components/logo.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(auth)/sign-in/[[...sign-in]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(auth)/sign-in/[[...sign-in]]/page.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(auth)/sign-up/[[...sign-up]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(auth)/sign-up/[[...sign-up]]/page.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/(home)/_components/result-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/(home)/_components/result-card.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/(home)/_components/results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/(home)/_components/results.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/(home)/page.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/[username]/_components/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/[username]/_components/actions.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/[username]/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/[username]/error.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/[username]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/[username]/loading.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/[username]/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/[username]/not-found.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/[username]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/[username]/page.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/_components/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/_components/container.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/_components/navbar/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/_components/navbar/actions.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/_components/navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/_components/navbar/index.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/_components/navbar/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/_components/navbar/logo.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/_components/navbar/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/_components/navbar/search.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/_components/sidebar/following.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/_components/sidebar/following.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/_components/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/_components/sidebar/index.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/_components/sidebar/recommended.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/_components/sidebar/recommended.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/_components/sidebar/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/_components/sidebar/toggle.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/_components/sidebar/user-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/_components/sidebar/user-item.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/_components/sidebar/wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/_components/sidebar/wrapper.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/layout.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/search/_components/result-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/search/_components/result-card.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/search/_components/results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/search/_components/results.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(browse)/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(browse)/search/page.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/(home)/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/(home)/loading.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/(home)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/(home)/page.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/container.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/navbar/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/navbar/actions.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/navbar/index.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/navbar/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/navbar/logo.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/sidebar/index.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/sidebar/nav-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/sidebar/nav-item.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/sidebar/navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/sidebar/navigation.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/sidebar/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/sidebar/toggle.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/sidebar/wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/_components/sidebar/wrapper.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/chat/_components/toggle-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/chat/_components/toggle-card.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/chat/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/chat/loading.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/chat/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/chat/page.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/community/_components/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/community/_components/columns.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/community/_components/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/community/_components/data-table.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/community/_components/unblock-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/community/_components/unblock-button.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/community/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/community/page.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/keys/_components/connect-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/keys/_components/connect-modal.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/keys/_components/copy-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/keys/_components/copy-button.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/keys/_components/key-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/keys/_components/key-card.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/keys/_components/url-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/keys/_components/url-card.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/keys/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/keys/page.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/(dashboard)/u/[username]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/(dashboard)/u/[username]/layout.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/api/uploadthing/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/api/uploadthing/core.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/api/uploadthing/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/api/uploadthing/route.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/api/webhooks/clerk/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/api/webhooks/clerk/route.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/api/webhooks/livekit/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/api/webhooks/livekit/route.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/error.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/favicon.ico -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/globals.css -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/layout.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/app/not-found.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components.json -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/hint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/hint.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/live-badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/live-badge.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/about-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/about-card.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/actions.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/bio-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/bio-modal.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/chat-community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/chat-community.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/chat-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/chat-form.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/chat-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/chat-header.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/chat-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/chat-info.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/chat-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/chat-list.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/chat-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/chat-message.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/chat-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/chat-toggle.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/chat.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/community-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/community-item.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/fullscreen-control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/fullscreen-control.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/header.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/index.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/info-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/info-card.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/info-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/info-modal.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/live-video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/live-video.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/loading-video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/loading-video.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/offline-video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/offline-video.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/variant-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/variant-toggle.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/video.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/video.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/stream-player/volume-control.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/stream-player/volume-control.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/theme-provider.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/thumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/thumbnail.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/alert.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/avatar.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/button.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/dialog.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/input.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/label.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/select.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/separator.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/slider.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/switch.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/table.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/textarea.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/user-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/user-avatar.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/components/verified-mark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/components/verified-mark.tsx -------------------------------------------------------------------------------- /twitch-clone/twtcln/hooks/use-viewer-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/hooks/use-viewer-token.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/lib/auth-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/lib/auth-service.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/lib/block-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/lib/block-service.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/lib/db.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/lib/feed-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/lib/feed-service.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/lib/follow-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/lib/follow-service.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/lib/recommended-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/lib/recommended-service.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/lib/search-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/lib/search-service.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/lib/stream-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/lib/stream-service.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/lib/uploadthing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/lib/uploadthing.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/lib/user-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/lib/user-service.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/lib/utils.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/middleware.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/next.config.js -------------------------------------------------------------------------------- /twitch-clone/twtcln/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/package-lock.json -------------------------------------------------------------------------------- /twitch-clone/twtcln/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/package.json -------------------------------------------------------------------------------- /twitch-clone/twtcln/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/postcss.config.js -------------------------------------------------------------------------------- /twitch-clone/twtcln/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/prisma/schema.prisma -------------------------------------------------------------------------------- /twitch-clone/twtcln/public/laughing-cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/public/laughing-cat.gif -------------------------------------------------------------------------------- /twitch-clone/twtcln/public/my-honest-reaction-my.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/public/my-honest-reaction-my.gif -------------------------------------------------------------------------------- /twitch-clone/twtcln/public/navlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/public/navlogo.png -------------------------------------------------------------------------------- /twitch-clone/twtcln/public/setting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/public/setting.svg -------------------------------------------------------------------------------- /twitch-clone/twtcln/public/startLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/public/startLogo.png -------------------------------------------------------------------------------- /twitch-clone/twtcln/store/use-chat-sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/store/use-chat-sidebar.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/store/use-creator-sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/store/use-creator-sidebar.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/store/use-sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/store/use-sidebar.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/tailwind.config.ts -------------------------------------------------------------------------------- /twitch-clone/twtcln/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mierudayo/simple-guide-React-Node/HEAD/twitch-clone/twtcln/tsconfig.json --------------------------------------------------------------------------------