├── .gitattributes ├── .gitignore ├── README.md ├── Video 01 ├── index.html └── this.txt ├── Video 02 ├── index.html ├── script.js └── style.css ├── Video 03 ├── .vscode │ └── settings.json ├── index.html ├── script.js └── style.css ├── Video 04 ├── bookmarkmanager.html ├── index.html ├── script.js └── style.css ├── Video 05 ├── image.png ├── index.html └── style.css ├── Video 06 └── index.html ├── Video 07 └── index.html ├── Video 08 ├── Comprehensive List.txt ├── index.html └── style.css ├── Video 09 ├── index.html └── style.css ├── Video 10 ├── download.jpg ├── img.svg ├── index.html ├── sachin.mp3 └── video.mp4 ├── Video 100 ├── index.html └── layout.png ├── Video 101 ├── css │ ├── input.css │ └── output.css ├── index.html ├── package-lock.json ├── package.json └── tailwind.config.js ├── Video 102 ├── index.html ├── layout.png ├── package-lock.json ├── package.json ├── src │ ├── input.css │ └── output.css └── tailwind.config.js ├── Video 103 ├── .env ├── Readme.md ├── index.html ├── package-lock.json ├── package.json └── src │ └── index.js ├── Video 104 ├── Readme.md ├── index.js ├── package-lock.json └── package.json ├── Video 105 ├── Readme.md ├── index.html ├── with-react │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── harry.txt │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ ├── Footer.js │ │ └── Navbar.js │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js └── withoutreact.html ├── Video 106 └── first-app │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── Card.css │ │ ├── Card.jsx │ │ ├── Footer.css │ │ ├── Footer.jsx │ │ ├── Navbar.css │ │ └── Navbar.jsx │ ├── index.css │ └── main.jsx │ └── vite.config.js ├── Video 107 └── state-intro │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.jsx │ ├── Component.js │ ├── assets │ │ └── react.svg │ ├── index.css │ └── main.jsx │ └── vite.config.js ├── Video 108 ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ └── Navbar.jsx │ ├── index.css │ └── main.jsx └── vite.config.js ├── Video 109 ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── App_1.jsx │ ├── Todo.jsx │ ├── assets │ │ └── react.svg │ ├── index.css │ └── main.jsx └── vite.config.js ├── Video 11 ├── index.html └── semantic-tags.png ├── Video 110 ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── index.css │ └── main.jsx ├── tailwind.config.js └── vite.config.js ├── Video 111 └── Readme.md ├── Video 112 ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── index.css │ └── main.jsx └── vite.config.js ├── Video 113 ├── .eslintrc.cjs ├── .gitignore ├── Readme.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ └── Navbar.jsx │ ├── index.css │ └── main.jsx └── vite.config.js ├── Video 114 ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── harry todo.zip ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ └── Navbar.jsx │ ├── index.css │ └── main.jsx ├── tailwind.config.js └── vite.config.js ├── Video 115 ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── About.jsx │ │ ├── Home.jsx │ │ ├── Login.jsx │ │ ├── Navbar.jsx │ │ └── User.jsx │ ├── index.css │ └── main.jsx └── vite.config.js ├── Video 116 ├── .eslintrc.cjs ├── .gitignore ├── Context API.png ├── README.md ├── index.html ├── our app.md ├── package-lock.json ├── package.json ├── public │ ├── vite.svg │ └── without_context_api │ │ ├── App.jsx │ │ └── components │ │ ├── Button.jsx │ │ ├── Component1.jsx │ │ └── Navbar.jsx ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── Button.jsx │ │ ├── Component1.jsx │ │ └── Navbar.jsx │ ├── context │ │ └── context.js │ ├── index.css │ └── main.jsx └── vite.config.js ├── Video 118 ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ └── Navbar.jsx │ ├── index.css │ └── main.jsx └── vite.config.js ├── Video 119 ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── backend │ └── server.js ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── index.css │ └── main.jsx └── vite.config.js ├── Video 12 └── index.html ├── Video 120 ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ └── Navbar.jsx │ ├── index.css │ ├── main.jsx │ └── redux │ │ ├── counter │ │ └── counterSlice.js │ │ └── store.js └── vite.config.js ├── Video 121 └── first │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── about │ │ └── page.js │ ├── contact │ │ └── page.js │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── component │ └── Navbar.js │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── next.svg │ └── vercel.svg │ └── tailwind.config.js ├── Video 122 └── my-app │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── components │ └── Navbar.js │ ├── data.json │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── next.svg │ └── vercel.svg │ └── tailwind.config.js ├── Video 123 ├── comps │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── about │ │ │ └── page.js │ │ ├── contact │ │ │ └── page.js │ │ ├── favicon.ico │ │ ├── footer │ │ │ └── page.js │ │ ├── globals.css │ │ ├── layout.js │ │ └── page.js │ ├── components │ │ └── Navbar.js │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ └── tailwind.config.js └── website │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── about │ │ └── page.js │ ├── contact │ │ └── page.js │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── components │ ├── Footer.js │ └── Navbar.js │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── next.svg │ └── vercel.svg │ └── tailwind.config.js ├── Video 124 └── api-routes │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── api │ │ └── add │ │ │ └── route.js │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── next.svg │ └── vercel.svg │ └── tailwind.config.js ├── Video 125 └── server-actions │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── actions │ └── form.js │ ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── harry.txt │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── next.svg │ └── vercel.svg │ └── tailwind.config.js ├── Video 126 └── middleware │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── about │ │ └── page.js │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── jsconfig.json │ ├── middleware.js │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── next.svg │ └── vercel.svg │ └── tailwind.config.js ├── Video 127 └── nextauth-demo │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── api │ │ └── auth │ │ │ └── [...nextauth] │ │ │ └── route.js │ ├── component │ │ └── SessionWrapper.js │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── next.svg │ └── vercel.svg │ └── tailwind.config.js ├── Video 128 └── dynamic-routes │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── about │ │ └── [...val] │ │ │ └── page.js │ ├── blog │ │ └── page.js │ ├── blogpost │ │ └── [slug] │ │ │ └── page.js │ ├── error.js │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ ├── not-found.js │ └── page.js │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── next.svg │ └── vercel.svg │ └── tailwind.config.js ├── Video 129 └── layouts │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── (admin) │ │ ├── admincomments │ │ │ └── page.js │ │ ├── adminlogin │ │ │ └── page.js │ │ ├── adminlogout │ │ │ ├── layout.js │ │ │ └── page.js │ │ └── layout.js │ ├── about │ │ └── page.js │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── components │ ├── Footer.js │ └── Navbar.js │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── next.svg │ └── vercel.svg │ └── tailwind.config.js ├── Video 13 └── index.html ├── Video 130 ├── passop-mongo │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── backend │ │ ├── .env │ │ ├── package-lock.json │ │ ├── package.json │ │ └── server.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── favicon.png │ │ ├── icons │ │ │ ├── eye.png │ │ │ ├── eyecross.png │ │ │ ├── github.svg │ │ │ └── heart.png │ │ └── vite.svg │ ├── src │ │ ├── App.css │ │ ├── App.jsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── Footer.jsx │ │ │ ├── Manager.jsx │ │ │ └── Navbar.jsx │ │ ├── index.css │ │ └── main.jsx │ ├── tailwind.config.js │ └── vite.config.js └── passop │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── passop.zip │ ├── postcss.config.js │ ├── public │ ├── favicon.png │ ├── icons │ │ ├── eye.png │ │ ├── eyecross.png │ │ ├── github.svg │ │ └── heart.png │ └── vite.svg │ ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── Footer.jsx │ │ ├── Manager.jsx │ │ └── Navbar.jsx │ ├── index.css │ └── main.jsx │ ├── tailwind.config.js │ └── vite.config.js ├── Video 131 ├── .eslintrc.json ├── .gitignore ├── README.md ├── actions │ └── useractions.js ├── app │ ├── [username] │ │ └── page.js │ ├── about │ │ └── page.js │ ├── api │ │ ├── auth │ │ │ └── [...nextauth] │ │ │ │ └── route.js │ │ └── razorpay │ │ │ └── route.js │ ├── dashboard │ │ └── page.js │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ ├── login │ │ └── page.js │ └── page.js ├── components │ ├── Dashboard.js │ ├── Footer.js │ ├── Navbar.js │ ├── PaymentPage.js │ └── SessionWrapper.js ├── db │ └── connectDb.js ├── jsconfig.json ├── models │ ├── Payment.js │ └── User.js ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── avatar.gif │ ├── coin.gif │ ├── group.gif │ ├── man.gif │ ├── next.svg │ ├── tea.gif │ └── vercel.svg └── tailwind.config.js ├── Video 132 └── next-navigation-tutorial │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── about │ │ └── page.js │ ├── blogpost │ │ └── [slug] │ │ │ └── page.js │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── components │ └── Navbar.js │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ └── tailwind.config.js ├── Video 133 └── ssr-ssg-isr │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ └── tailwind.config.js ├── Video 134 └── environment-variables │ ├── .env │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ └── tailwind.config.js ├── Video 135 └── styles-in-nextjs │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── about │ │ └── page.js │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── jsconfig.json │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── styles │ └── Home.module.css │ └── tailwind.config.js ├── Video 136 └── bitlinks │ ├── .eslintrc.json │ ├── .gitignore │ ├── BitLinks.postman_collection.json │ ├── README.md │ ├── app │ ├── [shorturl] │ │ └── page.js │ ├── api │ │ └── generate │ │ │ └── route.js │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ ├── GeistVF.woff │ │ └── Poppins-ExtraBold.ttf │ ├── globals.css │ ├── layout.js │ ├── page.js │ └── shorten │ │ └── page.js │ ├── components │ └── Navbar.js │ ├── jsconfig.json │ ├── lib │ └── mongodb.js │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ ├── file.svg │ ├── globe.svg │ ├── next.svg │ ├── vector.jpg │ ├── vercel.svg │ └── window.svg │ └── tailwind.config.js ├── Video 137 └── linktree-clone │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── app │ ├── [handle] │ │ └── page.js │ ├── api │ │ └── add │ │ │ └── route.js │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── generate │ │ └── page.js │ ├── globals.css │ ├── layout.js │ └── page.js │ ├── components │ └── Navbar.js │ ├── jsconfig.json │ ├── lib │ └── mongodb.js │ ├── next.config.mjs │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.mjs │ ├── public │ ├── file.svg │ ├── generate.png │ ├── globe.svg │ ├── home.png │ ├── next.svg │ ├── vercel.svg │ └── window.svg │ └── tailwind.config.js ├── Video 14 └── index.html ├── Video 15 ├── index.html └── style.css ├── Video 16 └── index.html ├── Video 17 └── index.html ├── Video 18 └── index.html ├── Video 19 ├── colors.html └── index.html ├── Video 20 └── index.html ├── Video 21 └── index.html ├── Video 22 └── index.html ├── Video 23 └── index.html ├── Video 24 └── index.html ├── Video 25 └── index.html ├── Video 26 └── index.html ├── Video 27 └── index.html ├── Video 28 └── index.html ├── Video 29 ├── card.png └── index.html ├── Video 30 └── index.html ├── Video 31 └── index.html ├── Video 32 ├── card.png └── index.html ├── Video 33 └── index.html ├── Video 34 └── index.html ├── Video 35 └── index.html ├── Video 36 └── index.html ├── Video 38 ├── flexbox.drawio.pdf └── index.html ├── Video 39 ├── grid-1.html └── grid-2.html ├── Video 40 └── index.html ├── Video 41 └── index.html ├── Video 42 ├── Demo.html ├── index.html └── style.css ├── Video 43 └── index.html ├── Video 44 └── index.html ├── Video 45 └── index.html ├── Video 46 └── index.html ├── Video 47 ├── index.html ├── style.css └── ue_english.exe ├── Video 48 └── index.html ├── Video 49 └── index.html ├── Video 50 └── index.html ├── Video 51 └── index.html ├── Video 52 └── index.html ├── Video 53 ├── assets │ ├── images │ │ ├── bg.jpg │ │ └── logo.svg │ └── videos │ │ └── video1.m4v ├── favicon.ico ├── index.html └── style.css ├── Video 54 ├── index.html ├── new.js └── script.js ├── Video 55 ├── index.html └── script.js ├── Video 56 └── index.js ├── Video 57 └── index.js ├── Video 58 └── index.js ├── Video 59 └── index.js ├── Video 60 └── index.js ├── Video 61 ├── index.html └── index.js ├── Video 62 └── index.js ├── Video 63 ├── index.html ├── index.js ├── loops.js └── mfr.js ├── Video 64 └── index.html ├── Video 65 └── index.html ├── Video 66 └── index.html ├── Video 67 ├── index.html └── script.js ├── Video 68 ├── index.html └── script.js ├── Video 69 ├── index.html └── script.js ├── Video 70 └── index.html ├── Video 71 └── index.html ├── Video 72 ├── index.html └── script.js ├── Video 73 ├── card.png ├── index.html └── script.js ├── Video 74 ├── eventBubbling.html ├── index.html └── script.js ├── Video 75 ├── index.html ├── promise.js └── script.js ├── Video 76 ├── index.html └── script.js ├── Video 77 ├── card.png ├── index.html └── script.js ├── Video 78 └── index.html ├── Video 79 ├── index.html └── script.js ├── Video 80 ├── gs.js ├── index.html └── script.js ├── Video 81 └── index.html ├── Video 82 ├── index.html └── script.js ├── Video 83 ├── Problems.md └── Solutions │ ├── 01_houses.js │ └── 07_localStorage.html ├── Video 84 - Project 2 - Spotify Clone ├── css │ ├── style.css │ └── utility.css ├── favicon.ico ├── img │ ├── close.svg │ ├── cover.jpg │ ├── hamburger.svg │ ├── home.svg │ ├── logo.svg │ ├── music.svg │ ├── mute.svg │ ├── nextsong.svg │ ├── pause.svg │ ├── play.svg │ ├── playlist.svg │ ├── prevsong.svg │ ├── search.svg │ └── volume.svg ├── index.html ├── js │ └── script.js └── songs │ ├── .htaccess │ ├── Angry_(mood) │ ├── cover.jpg │ └── info.json │ ├── Bright_(mood) │ ├── cover.jpg │ └── info.json │ ├── Chill_(mood) │ ├── cover.jpg │ └── info.json │ ├── Dark_(mood) │ ├── cover.jpg │ └── info.json │ ├── Diljit │ ├── cover.jpg │ └── info.json │ ├── Funky_(mood) │ ├── cover.jpg │ └── info.json │ ├── Love_(mood) │ ├── cover.jpg │ └── info.json │ ├── Uplifting_(mood) │ ├── cover.jpg │ └── info.json │ ├── cs │ ├── cover.jpg │ └── info.json │ ├── karan aujla │ ├── cover.jpg │ └── info.json │ └── ncs │ ├── cover.jpg │ └── info.json ├── Video 85 ├── myserver.js ├── package-lock.json ├── package.json └── server.js ├── Video 86 ├── index.html ├── main.js ├── mymodule.js ├── mymodule2.js ├── package-lock.json └── package.json ├── Video 87 ├── aboutpath.js ├── harry ├── harry.txt ├── harry2.txt ├── main.js ├── mainpromise.js └── package.json ├── Video 88 ├── Agenda.md ├── main.js ├── package-lock.json ├── package.json └── public │ └── harry.txt ├── Video 89 ├── Agenda.md ├── Response Methods.png ├── main.js ├── package-lock.json ├── package.json ├── public │ └── mypage.html ├── routes │ ├── blog.js │ └── shop.js └── templates │ └── index.html ├── Video 90 ├── logs.txt ├── main.js ├── package-lock.json ├── package.json ├── public │ └── harry.txt └── routes │ └── blog.js ├── Video 91 └── index.js ├── Video 92 ├── index.js ├── package-lock.json ├── package.json └── views │ ├── index.ejs │ └── navbar.ejs ├── Video 93 ├── index.js └── package.json ├── Video 94 └── playground1.mongodb.js ├── Video 95 └── crud.mongodb.js ├── Video 96 ├── main.js ├── models │ └── Todo.js ├── package-lock.json └── package.json ├── Video 97 └── main.js ├── Video 98 ├── index.html ├── package-lock.json ├── package.json ├── setup.md ├── src │ ├── input.css │ └── output.css └── tailwind.config.js ├── Video 99 ├── main.js ├── models │ └── Employee.js ├── package-lock.json ├── package.json ├── question.md └── views │ └── index.ejs └── video 117 ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.jsx ├── assets │ └── react.svg ├── index.css └── main.jsx └── vite.config.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.mp3 2 | node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/README.md -------------------------------------------------------------------------------- /Video 01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 01/index.html -------------------------------------------------------------------------------- /Video 01/this.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 01/this.txt -------------------------------------------------------------------------------- /Video 02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 02/index.html -------------------------------------------------------------------------------- /Video 02/script.js: -------------------------------------------------------------------------------- 1 | alert("Welcome to Sigma Web Development Course") -------------------------------------------------------------------------------- /Video 02/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 02/style.css -------------------------------------------------------------------------------- /Video 03/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 03/.vscode/settings.json -------------------------------------------------------------------------------- /Video 03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 03/index.html -------------------------------------------------------------------------------- /Video 03/script.js: -------------------------------------------------------------------------------- 1 | alert("Hello") -------------------------------------------------------------------------------- /Video 03/style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: red; 3 | } -------------------------------------------------------------------------------- /Video 04/bookmarkmanager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 04/bookmarkmanager.html -------------------------------------------------------------------------------- /Video 04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 04/index.html -------------------------------------------------------------------------------- /Video 04/script.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Video 04/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 04/style.css -------------------------------------------------------------------------------- /Video 05/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 05/image.png -------------------------------------------------------------------------------- /Video 05/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 05/index.html -------------------------------------------------------------------------------- /Video 05/style.css: -------------------------------------------------------------------------------- 1 | td{ 2 | border: 2px solid black; 3 | } -------------------------------------------------------------------------------- /Video 06/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 06/index.html -------------------------------------------------------------------------------- /Video 07/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 07/index.html -------------------------------------------------------------------------------- /Video 08/Comprehensive List.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 08/Comprehensive List.txt -------------------------------------------------------------------------------- /Video 08/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 08/index.html -------------------------------------------------------------------------------- /Video 08/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 08/style.css -------------------------------------------------------------------------------- /Video 09/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 09/index.html -------------------------------------------------------------------------------- /Video 09/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 09/style.css -------------------------------------------------------------------------------- /Video 10/download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 10/download.jpg -------------------------------------------------------------------------------- /Video 10/img.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 10/img.svg -------------------------------------------------------------------------------- /Video 10/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 10/index.html -------------------------------------------------------------------------------- /Video 10/sachin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 10/sachin.mp3 -------------------------------------------------------------------------------- /Video 10/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 10/video.mp4 -------------------------------------------------------------------------------- /Video 100/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 100/index.html -------------------------------------------------------------------------------- /Video 100/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 100/layout.png -------------------------------------------------------------------------------- /Video 101/css/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 101/css/input.css -------------------------------------------------------------------------------- /Video 101/css/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 101/css/output.css -------------------------------------------------------------------------------- /Video 101/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 101/index.html -------------------------------------------------------------------------------- /Video 101/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 101/package-lock.json -------------------------------------------------------------------------------- /Video 101/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 101/package.json -------------------------------------------------------------------------------- /Video 101/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 101/tailwind.config.js -------------------------------------------------------------------------------- /Video 102/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 102/index.html -------------------------------------------------------------------------------- /Video 102/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 102/layout.png -------------------------------------------------------------------------------- /Video 102/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 102/package-lock.json -------------------------------------------------------------------------------- /Video 102/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 102/package.json -------------------------------------------------------------------------------- /Video 102/src/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 102/src/input.css -------------------------------------------------------------------------------- /Video 102/src/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 102/src/output.css -------------------------------------------------------------------------------- /Video 102/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 102/tailwind.config.js -------------------------------------------------------------------------------- /Video 103/.env: -------------------------------------------------------------------------------- 1 | PASSWORD=harry -------------------------------------------------------------------------------- /Video 103/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 103/Readme.md -------------------------------------------------------------------------------- /Video 103/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 103/index.html -------------------------------------------------------------------------------- /Video 103/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 103/package-lock.json -------------------------------------------------------------------------------- /Video 103/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 103/package.json -------------------------------------------------------------------------------- /Video 103/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 103/src/index.js -------------------------------------------------------------------------------- /Video 104/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 104/Readme.md -------------------------------------------------------------------------------- /Video 104/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 104/index.js -------------------------------------------------------------------------------- /Video 104/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 104/package-lock.json -------------------------------------------------------------------------------- /Video 104/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 104/package.json -------------------------------------------------------------------------------- /Video 105/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/Readme.md -------------------------------------------------------------------------------- /Video 105/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/index.html -------------------------------------------------------------------------------- /Video 105/with-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/.gitignore -------------------------------------------------------------------------------- /Video 105/with-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/README.md -------------------------------------------------------------------------------- /Video 105/with-react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/package-lock.json -------------------------------------------------------------------------------- /Video 105/with-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/package.json -------------------------------------------------------------------------------- /Video 105/with-react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/public/favicon.ico -------------------------------------------------------------------------------- /Video 105/with-react/public/harry.txt: -------------------------------------------------------------------------------- 1 | Hey harry -------------------------------------------------------------------------------- /Video 105/with-react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/public/index.html -------------------------------------------------------------------------------- /Video 105/with-react/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/public/logo192.png -------------------------------------------------------------------------------- /Video 105/with-react/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/public/logo512.png -------------------------------------------------------------------------------- /Video 105/with-react/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/public/manifest.json -------------------------------------------------------------------------------- /Video 105/with-react/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/public/robots.txt -------------------------------------------------------------------------------- /Video 105/with-react/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/src/App.css -------------------------------------------------------------------------------- /Video 105/with-react/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/src/App.js -------------------------------------------------------------------------------- /Video 105/with-react/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/src/App.test.js -------------------------------------------------------------------------------- /Video 105/with-react/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/src/components/Footer.js -------------------------------------------------------------------------------- /Video 105/with-react/src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/src/components/Navbar.js -------------------------------------------------------------------------------- /Video 105/with-react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/src/index.css -------------------------------------------------------------------------------- /Video 105/with-react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/src/index.js -------------------------------------------------------------------------------- /Video 105/with-react/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/src/logo.svg -------------------------------------------------------------------------------- /Video 105/with-react/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/src/reportWebVitals.js -------------------------------------------------------------------------------- /Video 105/with-react/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/with-react/src/setupTests.js -------------------------------------------------------------------------------- /Video 105/withoutreact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 105/withoutreact.html -------------------------------------------------------------------------------- /Video 106/first-app/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 106/first-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/.gitignore -------------------------------------------------------------------------------- /Video 106/first-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/README.md -------------------------------------------------------------------------------- /Video 106/first-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/index.html -------------------------------------------------------------------------------- /Video 106/first-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/package-lock.json -------------------------------------------------------------------------------- /Video 106/first-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/package.json -------------------------------------------------------------------------------- /Video 106/first-app/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/public/vite.svg -------------------------------------------------------------------------------- /Video 106/first-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/src/App.css -------------------------------------------------------------------------------- /Video 106/first-app/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/src/App.jsx -------------------------------------------------------------------------------- /Video 106/first-app/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/src/assets/react.svg -------------------------------------------------------------------------------- /Video 106/first-app/src/components/Card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/src/components/Card.css -------------------------------------------------------------------------------- /Video 106/first-app/src/components/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/src/components/Card.jsx -------------------------------------------------------------------------------- /Video 106/first-app/src/components/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/src/components/Footer.css -------------------------------------------------------------------------------- /Video 106/first-app/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/src/components/Footer.jsx -------------------------------------------------------------------------------- /Video 106/first-app/src/components/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/src/components/Navbar.css -------------------------------------------------------------------------------- /Video 106/first-app/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/src/components/Navbar.jsx -------------------------------------------------------------------------------- /Video 106/first-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/src/index.css -------------------------------------------------------------------------------- /Video 106/first-app/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/src/main.jsx -------------------------------------------------------------------------------- /Video 106/first-app/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 106/first-app/vite.config.js -------------------------------------------------------------------------------- /Video 107/state-intro/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 107/state-intro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/.gitignore -------------------------------------------------------------------------------- /Video 107/state-intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/README.md -------------------------------------------------------------------------------- /Video 107/state-intro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/index.html -------------------------------------------------------------------------------- /Video 107/state-intro/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/package-lock.json -------------------------------------------------------------------------------- /Video 107/state-intro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/package.json -------------------------------------------------------------------------------- /Video 107/state-intro/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/public/vite.svg -------------------------------------------------------------------------------- /Video 107/state-intro/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/src/App.css -------------------------------------------------------------------------------- /Video 107/state-intro/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/src/App.jsx -------------------------------------------------------------------------------- /Video 107/state-intro/src/Component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/src/Component.js -------------------------------------------------------------------------------- /Video 107/state-intro/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/src/assets/react.svg -------------------------------------------------------------------------------- /Video 107/state-intro/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/src/index.css -------------------------------------------------------------------------------- /Video 107/state-intro/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/src/main.jsx -------------------------------------------------------------------------------- /Video 107/state-intro/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 107/state-intro/vite.config.js -------------------------------------------------------------------------------- /Video 108/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 108/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/.gitignore -------------------------------------------------------------------------------- /Video 108/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/README.md -------------------------------------------------------------------------------- /Video 108/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/index.html -------------------------------------------------------------------------------- /Video 108/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/package-lock.json -------------------------------------------------------------------------------- /Video 108/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/package.json -------------------------------------------------------------------------------- /Video 108/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/public/vite.svg -------------------------------------------------------------------------------- /Video 108/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/src/App.css -------------------------------------------------------------------------------- /Video 108/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/src/App.jsx -------------------------------------------------------------------------------- /Video 108/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/src/assets/react.svg -------------------------------------------------------------------------------- /Video 108/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/src/components/Navbar.jsx -------------------------------------------------------------------------------- /Video 108/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/src/index.css -------------------------------------------------------------------------------- /Video 108/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/src/main.jsx -------------------------------------------------------------------------------- /Video 108/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 108/vite.config.js -------------------------------------------------------------------------------- /Video 109/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 109/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/.gitignore -------------------------------------------------------------------------------- /Video 109/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/README.md -------------------------------------------------------------------------------- /Video 109/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/index.html -------------------------------------------------------------------------------- /Video 109/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/package-lock.json -------------------------------------------------------------------------------- /Video 109/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/package.json -------------------------------------------------------------------------------- /Video 109/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/public/vite.svg -------------------------------------------------------------------------------- /Video 109/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/src/App.css -------------------------------------------------------------------------------- /Video 109/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/src/App.jsx -------------------------------------------------------------------------------- /Video 109/src/App_1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/src/App_1.jsx -------------------------------------------------------------------------------- /Video 109/src/Todo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/src/Todo.jsx -------------------------------------------------------------------------------- /Video 109/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/src/assets/react.svg -------------------------------------------------------------------------------- /Video 109/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/src/index.css -------------------------------------------------------------------------------- /Video 109/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/src/main.jsx -------------------------------------------------------------------------------- /Video 109/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 109/vite.config.js -------------------------------------------------------------------------------- /Video 11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 11/index.html -------------------------------------------------------------------------------- /Video 11/semantic-tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 11/semantic-tags.png -------------------------------------------------------------------------------- /Video 110/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 110/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/.gitignore -------------------------------------------------------------------------------- /Video 110/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/README.md -------------------------------------------------------------------------------- /Video 110/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/index.html -------------------------------------------------------------------------------- /Video 110/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/package-lock.json -------------------------------------------------------------------------------- /Video 110/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/package.json -------------------------------------------------------------------------------- /Video 110/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/postcss.config.js -------------------------------------------------------------------------------- /Video 110/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/public/vite.svg -------------------------------------------------------------------------------- /Video 110/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/src/App.css -------------------------------------------------------------------------------- /Video 110/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/src/App.jsx -------------------------------------------------------------------------------- /Video 110/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/src/assets/react.svg -------------------------------------------------------------------------------- /Video 110/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/src/index.css -------------------------------------------------------------------------------- /Video 110/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/src/main.jsx -------------------------------------------------------------------------------- /Video 110/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/tailwind.config.js -------------------------------------------------------------------------------- /Video 110/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 110/vite.config.js -------------------------------------------------------------------------------- /Video 111/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 111/Readme.md -------------------------------------------------------------------------------- /Video 112/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 112/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/.gitignore -------------------------------------------------------------------------------- /Video 112/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/README.md -------------------------------------------------------------------------------- /Video 112/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/index.html -------------------------------------------------------------------------------- /Video 112/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/package-lock.json -------------------------------------------------------------------------------- /Video 112/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/package.json -------------------------------------------------------------------------------- /Video 112/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/public/vite.svg -------------------------------------------------------------------------------- /Video 112/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/src/App.css -------------------------------------------------------------------------------- /Video 112/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/src/App.jsx -------------------------------------------------------------------------------- /Video 112/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/src/assets/react.svg -------------------------------------------------------------------------------- /Video 112/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/src/index.css -------------------------------------------------------------------------------- /Video 112/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/src/main.jsx -------------------------------------------------------------------------------- /Video 112/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 112/vite.config.js -------------------------------------------------------------------------------- /Video 113/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 113/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/.gitignore -------------------------------------------------------------------------------- /Video 113/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/Readme.md -------------------------------------------------------------------------------- /Video 113/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/index.html -------------------------------------------------------------------------------- /Video 113/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/package-lock.json -------------------------------------------------------------------------------- /Video 113/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/package.json -------------------------------------------------------------------------------- /Video 113/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/public/vite.svg -------------------------------------------------------------------------------- /Video 113/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Video 113/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/src/App.jsx -------------------------------------------------------------------------------- /Video 113/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/src/assets/react.svg -------------------------------------------------------------------------------- /Video 113/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/src/components/Navbar.jsx -------------------------------------------------------------------------------- /Video 113/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/src/index.css -------------------------------------------------------------------------------- /Video 113/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/src/main.jsx -------------------------------------------------------------------------------- /Video 113/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 113/vite.config.js -------------------------------------------------------------------------------- /Video 114/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 114/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/.gitignore -------------------------------------------------------------------------------- /Video 114/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/README.md -------------------------------------------------------------------------------- /Video 114/harry todo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/harry todo.zip -------------------------------------------------------------------------------- /Video 114/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/index.html -------------------------------------------------------------------------------- /Video 114/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/package-lock.json -------------------------------------------------------------------------------- /Video 114/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/package.json -------------------------------------------------------------------------------- /Video 114/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/postcss.config.js -------------------------------------------------------------------------------- /Video 114/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/public/vite.svg -------------------------------------------------------------------------------- /Video 114/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/src/App.css -------------------------------------------------------------------------------- /Video 114/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/src/App.jsx -------------------------------------------------------------------------------- /Video 114/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/src/assets/react.svg -------------------------------------------------------------------------------- /Video 114/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/src/components/Navbar.jsx -------------------------------------------------------------------------------- /Video 114/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/src/index.css -------------------------------------------------------------------------------- /Video 114/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/src/main.jsx -------------------------------------------------------------------------------- /Video 114/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/tailwind.config.js -------------------------------------------------------------------------------- /Video 114/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 114/vite.config.js -------------------------------------------------------------------------------- /Video 115/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 115/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/.gitignore -------------------------------------------------------------------------------- /Video 115/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/README.md -------------------------------------------------------------------------------- /Video 115/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/index.html -------------------------------------------------------------------------------- /Video 115/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/package-lock.json -------------------------------------------------------------------------------- /Video 115/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/package.json -------------------------------------------------------------------------------- /Video 115/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/public/vite.svg -------------------------------------------------------------------------------- /Video 115/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Video 115/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/src/App.jsx -------------------------------------------------------------------------------- /Video 115/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/src/assets/react.svg -------------------------------------------------------------------------------- /Video 115/src/components/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/src/components/About.jsx -------------------------------------------------------------------------------- /Video 115/src/components/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/src/components/Home.jsx -------------------------------------------------------------------------------- /Video 115/src/components/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/src/components/Login.jsx -------------------------------------------------------------------------------- /Video 115/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/src/components/Navbar.jsx -------------------------------------------------------------------------------- /Video 115/src/components/User.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/src/components/User.jsx -------------------------------------------------------------------------------- /Video 115/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/src/index.css -------------------------------------------------------------------------------- /Video 115/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/src/main.jsx -------------------------------------------------------------------------------- /Video 115/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 115/vite.config.js -------------------------------------------------------------------------------- /Video 116/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 116/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/.gitignore -------------------------------------------------------------------------------- /Video 116/Context API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/Context API.png -------------------------------------------------------------------------------- /Video 116/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/README.md -------------------------------------------------------------------------------- /Video 116/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/index.html -------------------------------------------------------------------------------- /Video 116/our app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/our app.md -------------------------------------------------------------------------------- /Video 116/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/package-lock.json -------------------------------------------------------------------------------- /Video 116/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/package.json -------------------------------------------------------------------------------- /Video 116/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/public/vite.svg -------------------------------------------------------------------------------- /Video 116/public/without_context_api/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/public/without_context_api/App.jsx -------------------------------------------------------------------------------- /Video 116/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/src/App.css -------------------------------------------------------------------------------- /Video 116/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/src/App.jsx -------------------------------------------------------------------------------- /Video 116/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/src/assets/react.svg -------------------------------------------------------------------------------- /Video 116/src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/src/components/Button.jsx -------------------------------------------------------------------------------- /Video 116/src/components/Component1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/src/components/Component1.jsx -------------------------------------------------------------------------------- /Video 116/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/src/components/Navbar.jsx -------------------------------------------------------------------------------- /Video 116/src/context/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/src/context/context.js -------------------------------------------------------------------------------- /Video 116/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/src/index.css -------------------------------------------------------------------------------- /Video 116/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/src/main.jsx -------------------------------------------------------------------------------- /Video 116/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 116/vite.config.js -------------------------------------------------------------------------------- /Video 118/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 118/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/.gitignore -------------------------------------------------------------------------------- /Video 118/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/README.md -------------------------------------------------------------------------------- /Video 118/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/index.html -------------------------------------------------------------------------------- /Video 118/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/package-lock.json -------------------------------------------------------------------------------- /Video 118/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/package.json -------------------------------------------------------------------------------- /Video 118/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/public/vite.svg -------------------------------------------------------------------------------- /Video 118/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/src/App.css -------------------------------------------------------------------------------- /Video 118/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/src/App.jsx -------------------------------------------------------------------------------- /Video 118/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/src/assets/react.svg -------------------------------------------------------------------------------- /Video 118/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/src/components/Navbar.jsx -------------------------------------------------------------------------------- /Video 118/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/src/index.css -------------------------------------------------------------------------------- /Video 118/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/src/main.jsx -------------------------------------------------------------------------------- /Video 118/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 118/vite.config.js -------------------------------------------------------------------------------- /Video 119/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 119/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/.gitignore -------------------------------------------------------------------------------- /Video 119/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/README.md -------------------------------------------------------------------------------- /Video 119/backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/backend/server.js -------------------------------------------------------------------------------- /Video 119/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/index.html -------------------------------------------------------------------------------- /Video 119/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/package-lock.json -------------------------------------------------------------------------------- /Video 119/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/package.json -------------------------------------------------------------------------------- /Video 119/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/public/vite.svg -------------------------------------------------------------------------------- /Video 119/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/src/App.css -------------------------------------------------------------------------------- /Video 119/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/src/App.jsx -------------------------------------------------------------------------------- /Video 119/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/src/assets/react.svg -------------------------------------------------------------------------------- /Video 119/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/src/index.css -------------------------------------------------------------------------------- /Video 119/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/src/main.jsx -------------------------------------------------------------------------------- /Video 119/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 119/vite.config.js -------------------------------------------------------------------------------- /Video 12/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 12/index.html -------------------------------------------------------------------------------- /Video 120/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 120/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/.gitignore -------------------------------------------------------------------------------- /Video 120/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/README.md -------------------------------------------------------------------------------- /Video 120/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/index.html -------------------------------------------------------------------------------- /Video 120/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/package-lock.json -------------------------------------------------------------------------------- /Video 120/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/package.json -------------------------------------------------------------------------------- /Video 120/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/public/vite.svg -------------------------------------------------------------------------------- /Video 120/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/src/App.css -------------------------------------------------------------------------------- /Video 120/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/src/App.jsx -------------------------------------------------------------------------------- /Video 120/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/src/assets/react.svg -------------------------------------------------------------------------------- /Video 120/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/src/components/Navbar.jsx -------------------------------------------------------------------------------- /Video 120/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/src/index.css -------------------------------------------------------------------------------- /Video 120/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/src/main.jsx -------------------------------------------------------------------------------- /Video 120/src/redux/counter/counterSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/src/redux/counter/counterSlice.js -------------------------------------------------------------------------------- /Video 120/src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/src/redux/store.js -------------------------------------------------------------------------------- /Video 120/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 120/vite.config.js -------------------------------------------------------------------------------- /Video 121/first/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 121/first/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/.gitignore -------------------------------------------------------------------------------- /Video 121/first/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/README.md -------------------------------------------------------------------------------- /Video 121/first/app/about/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/app/about/page.js -------------------------------------------------------------------------------- /Video 121/first/app/contact/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/app/contact/page.js -------------------------------------------------------------------------------- /Video 121/first/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/app/favicon.ico -------------------------------------------------------------------------------- /Video 121/first/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/app/globals.css -------------------------------------------------------------------------------- /Video 121/first/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/app/layout.js -------------------------------------------------------------------------------- /Video 121/first/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/app/page.js -------------------------------------------------------------------------------- /Video 121/first/component/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/component/Navbar.js -------------------------------------------------------------------------------- /Video 121/first/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/jsconfig.json -------------------------------------------------------------------------------- /Video 121/first/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/next.config.mjs -------------------------------------------------------------------------------- /Video 121/first/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/package-lock.json -------------------------------------------------------------------------------- /Video 121/first/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/package.json -------------------------------------------------------------------------------- /Video 121/first/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/postcss.config.js -------------------------------------------------------------------------------- /Video 121/first/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/public/next.svg -------------------------------------------------------------------------------- /Video 121/first/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/public/vercel.svg -------------------------------------------------------------------------------- /Video 121/first/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 121/first/tailwind.config.js -------------------------------------------------------------------------------- /Video 122/my-app/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 122/my-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/.gitignore -------------------------------------------------------------------------------- /Video 122/my-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/README.md -------------------------------------------------------------------------------- /Video 122/my-app/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/app/favicon.ico -------------------------------------------------------------------------------- /Video 122/my-app/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/app/globals.css -------------------------------------------------------------------------------- /Video 122/my-app/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/app/layout.js -------------------------------------------------------------------------------- /Video 122/my-app/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/app/page.js -------------------------------------------------------------------------------- /Video 122/my-app/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/components/Navbar.js -------------------------------------------------------------------------------- /Video 122/my-app/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/data.json -------------------------------------------------------------------------------- /Video 122/my-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/jsconfig.json -------------------------------------------------------------------------------- /Video 122/my-app/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/next.config.mjs -------------------------------------------------------------------------------- /Video 122/my-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/package-lock.json -------------------------------------------------------------------------------- /Video 122/my-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/package.json -------------------------------------------------------------------------------- /Video 122/my-app/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/postcss.config.js -------------------------------------------------------------------------------- /Video 122/my-app/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/public/next.svg -------------------------------------------------------------------------------- /Video 122/my-app/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/public/vercel.svg -------------------------------------------------------------------------------- /Video 122/my-app/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 122/my-app/tailwind.config.js -------------------------------------------------------------------------------- /Video 123/comps/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 123/comps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/.gitignore -------------------------------------------------------------------------------- /Video 123/comps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/README.md -------------------------------------------------------------------------------- /Video 123/comps/app/about/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/app/about/page.js -------------------------------------------------------------------------------- /Video 123/comps/app/contact/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/app/contact/page.js -------------------------------------------------------------------------------- /Video 123/comps/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/app/favicon.ico -------------------------------------------------------------------------------- /Video 123/comps/app/footer/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/app/footer/page.js -------------------------------------------------------------------------------- /Video 123/comps/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/app/globals.css -------------------------------------------------------------------------------- /Video 123/comps/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/app/layout.js -------------------------------------------------------------------------------- /Video 123/comps/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/app/page.js -------------------------------------------------------------------------------- /Video 123/comps/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/components/Navbar.js -------------------------------------------------------------------------------- /Video 123/comps/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/jsconfig.json -------------------------------------------------------------------------------- /Video 123/comps/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/next.config.mjs -------------------------------------------------------------------------------- /Video 123/comps/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/package-lock.json -------------------------------------------------------------------------------- /Video 123/comps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/package.json -------------------------------------------------------------------------------- /Video 123/comps/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/postcss.config.js -------------------------------------------------------------------------------- /Video 123/comps/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/public/next.svg -------------------------------------------------------------------------------- /Video 123/comps/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/public/vercel.svg -------------------------------------------------------------------------------- /Video 123/comps/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/comps/tailwind.config.js -------------------------------------------------------------------------------- /Video 123/website/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 123/website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/.gitignore -------------------------------------------------------------------------------- /Video 123/website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/README.md -------------------------------------------------------------------------------- /Video 123/website/app/about/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/app/about/page.js -------------------------------------------------------------------------------- /Video 123/website/app/contact/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/app/contact/page.js -------------------------------------------------------------------------------- /Video 123/website/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/app/favicon.ico -------------------------------------------------------------------------------- /Video 123/website/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/app/globals.css -------------------------------------------------------------------------------- /Video 123/website/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/app/layout.js -------------------------------------------------------------------------------- /Video 123/website/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/app/page.js -------------------------------------------------------------------------------- /Video 123/website/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/components/Footer.js -------------------------------------------------------------------------------- /Video 123/website/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/components/Navbar.js -------------------------------------------------------------------------------- /Video 123/website/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/jsconfig.json -------------------------------------------------------------------------------- /Video 123/website/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/next.config.mjs -------------------------------------------------------------------------------- /Video 123/website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/package-lock.json -------------------------------------------------------------------------------- /Video 123/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/package.json -------------------------------------------------------------------------------- /Video 123/website/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/postcss.config.js -------------------------------------------------------------------------------- /Video 123/website/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/public/next.svg -------------------------------------------------------------------------------- /Video 123/website/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/public/vercel.svg -------------------------------------------------------------------------------- /Video 123/website/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 123/website/tailwind.config.js -------------------------------------------------------------------------------- /Video 124/api-routes/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 124/api-routes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/.gitignore -------------------------------------------------------------------------------- /Video 124/api-routes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/README.md -------------------------------------------------------------------------------- /Video 124/api-routes/app/api/add/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/app/api/add/route.js -------------------------------------------------------------------------------- /Video 124/api-routes/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/app/favicon.ico -------------------------------------------------------------------------------- /Video 124/api-routes/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/app/globals.css -------------------------------------------------------------------------------- /Video 124/api-routes/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/app/layout.js -------------------------------------------------------------------------------- /Video 124/api-routes/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/app/page.js -------------------------------------------------------------------------------- /Video 124/api-routes/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/jsconfig.json -------------------------------------------------------------------------------- /Video 124/api-routes/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/next.config.mjs -------------------------------------------------------------------------------- /Video 124/api-routes/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/package-lock.json -------------------------------------------------------------------------------- /Video 124/api-routes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/package.json -------------------------------------------------------------------------------- /Video 124/api-routes/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/postcss.config.js -------------------------------------------------------------------------------- /Video 124/api-routes/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/public/next.svg -------------------------------------------------------------------------------- /Video 124/api-routes/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/public/vercel.svg -------------------------------------------------------------------------------- /Video 124/api-routes/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 124/api-routes/tailwind.config.js -------------------------------------------------------------------------------- /Video 125/server-actions/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 125/server-actions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/.gitignore -------------------------------------------------------------------------------- /Video 125/server-actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/README.md -------------------------------------------------------------------------------- /Video 125/server-actions/actions/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/actions/form.js -------------------------------------------------------------------------------- /Video 125/server-actions/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/app/favicon.ico -------------------------------------------------------------------------------- /Video 125/server-actions/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/app/globals.css -------------------------------------------------------------------------------- /Video 125/server-actions/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/app/layout.js -------------------------------------------------------------------------------- /Video 125/server-actions/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/app/page.js -------------------------------------------------------------------------------- /Video 125/server-actions/harry.txt: -------------------------------------------------------------------------------- 1 | Name is Harry and Address is India -------------------------------------------------------------------------------- /Video 125/server-actions/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/jsconfig.json -------------------------------------------------------------------------------- /Video 125/server-actions/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/next.config.mjs -------------------------------------------------------------------------------- /Video 125/server-actions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/package-lock.json -------------------------------------------------------------------------------- /Video 125/server-actions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/package.json -------------------------------------------------------------------------------- /Video 125/server-actions/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/postcss.config.js -------------------------------------------------------------------------------- /Video 125/server-actions/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/public/next.svg -------------------------------------------------------------------------------- /Video 125/server-actions/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/public/vercel.svg -------------------------------------------------------------------------------- /Video 125/server-actions/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 125/server-actions/tailwind.config.js -------------------------------------------------------------------------------- /Video 126/middleware/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 126/middleware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/.gitignore -------------------------------------------------------------------------------- /Video 126/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/README.md -------------------------------------------------------------------------------- /Video 126/middleware/app/about/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/app/about/page.js -------------------------------------------------------------------------------- /Video 126/middleware/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/app/favicon.ico -------------------------------------------------------------------------------- /Video 126/middleware/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/app/globals.css -------------------------------------------------------------------------------- /Video 126/middleware/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/app/layout.js -------------------------------------------------------------------------------- /Video 126/middleware/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/app/page.js -------------------------------------------------------------------------------- /Video 126/middleware/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/jsconfig.json -------------------------------------------------------------------------------- /Video 126/middleware/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/middleware.js -------------------------------------------------------------------------------- /Video 126/middleware/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/next.config.mjs -------------------------------------------------------------------------------- /Video 126/middleware/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/package-lock.json -------------------------------------------------------------------------------- /Video 126/middleware/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/package.json -------------------------------------------------------------------------------- /Video 126/middleware/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/postcss.config.js -------------------------------------------------------------------------------- /Video 126/middleware/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/public/next.svg -------------------------------------------------------------------------------- /Video 126/middleware/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/public/vercel.svg -------------------------------------------------------------------------------- /Video 126/middleware/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 126/middleware/tailwind.config.js -------------------------------------------------------------------------------- /Video 127/nextauth-demo/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 127/nextauth-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/.gitignore -------------------------------------------------------------------------------- /Video 127/nextauth-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/README.md -------------------------------------------------------------------------------- /Video 127/nextauth-demo/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/app/favicon.ico -------------------------------------------------------------------------------- /Video 127/nextauth-demo/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/app/globals.css -------------------------------------------------------------------------------- /Video 127/nextauth-demo/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/app/layout.js -------------------------------------------------------------------------------- /Video 127/nextauth-demo/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/app/page.js -------------------------------------------------------------------------------- /Video 127/nextauth-demo/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/jsconfig.json -------------------------------------------------------------------------------- /Video 127/nextauth-demo/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/next.config.mjs -------------------------------------------------------------------------------- /Video 127/nextauth-demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/package-lock.json -------------------------------------------------------------------------------- /Video 127/nextauth-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/package.json -------------------------------------------------------------------------------- /Video 127/nextauth-demo/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/postcss.config.js -------------------------------------------------------------------------------- /Video 127/nextauth-demo/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/public/next.svg -------------------------------------------------------------------------------- /Video 127/nextauth-demo/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/public/vercel.svg -------------------------------------------------------------------------------- /Video 127/nextauth-demo/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 127/nextauth-demo/tailwind.config.js -------------------------------------------------------------------------------- /Video 128/dynamic-routes/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 128/dynamic-routes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/.gitignore -------------------------------------------------------------------------------- /Video 128/dynamic-routes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/README.md -------------------------------------------------------------------------------- /Video 128/dynamic-routes/app/blog/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/app/blog/page.js -------------------------------------------------------------------------------- /Video 128/dynamic-routes/app/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/app/error.js -------------------------------------------------------------------------------- /Video 128/dynamic-routes/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/app/favicon.ico -------------------------------------------------------------------------------- /Video 128/dynamic-routes/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/app/globals.css -------------------------------------------------------------------------------- /Video 128/dynamic-routes/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/app/layout.js -------------------------------------------------------------------------------- /Video 128/dynamic-routes/app/not-found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/app/not-found.js -------------------------------------------------------------------------------- /Video 128/dynamic-routes/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/app/page.js -------------------------------------------------------------------------------- /Video 128/dynamic-routes/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/jsconfig.json -------------------------------------------------------------------------------- /Video 128/dynamic-routes/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/next.config.mjs -------------------------------------------------------------------------------- /Video 128/dynamic-routes/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/package-lock.json -------------------------------------------------------------------------------- /Video 128/dynamic-routes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/package.json -------------------------------------------------------------------------------- /Video 128/dynamic-routes/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/postcss.config.js -------------------------------------------------------------------------------- /Video 128/dynamic-routes/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/public/next.svg -------------------------------------------------------------------------------- /Video 128/dynamic-routes/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/public/vercel.svg -------------------------------------------------------------------------------- /Video 128/dynamic-routes/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 128/dynamic-routes/tailwind.config.js -------------------------------------------------------------------------------- /Video 129/layouts/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 129/layouts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/.gitignore -------------------------------------------------------------------------------- /Video 129/layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/README.md -------------------------------------------------------------------------------- /Video 129/layouts/app/(admin)/adminlogin/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/app/(admin)/adminlogin/page.js -------------------------------------------------------------------------------- /Video 129/layouts/app/(admin)/adminlogout/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/app/(admin)/adminlogout/page.js -------------------------------------------------------------------------------- /Video 129/layouts/app/(admin)/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/app/(admin)/layout.js -------------------------------------------------------------------------------- /Video 129/layouts/app/about/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/app/about/page.js -------------------------------------------------------------------------------- /Video 129/layouts/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/app/favicon.ico -------------------------------------------------------------------------------- /Video 129/layouts/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/app/globals.css -------------------------------------------------------------------------------- /Video 129/layouts/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/app/layout.js -------------------------------------------------------------------------------- /Video 129/layouts/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/app/page.js -------------------------------------------------------------------------------- /Video 129/layouts/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/components/Footer.js -------------------------------------------------------------------------------- /Video 129/layouts/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/components/Navbar.js -------------------------------------------------------------------------------- /Video 129/layouts/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/jsconfig.json -------------------------------------------------------------------------------- /Video 129/layouts/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/next.config.mjs -------------------------------------------------------------------------------- /Video 129/layouts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/package-lock.json -------------------------------------------------------------------------------- /Video 129/layouts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/package.json -------------------------------------------------------------------------------- /Video 129/layouts/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/postcss.config.js -------------------------------------------------------------------------------- /Video 129/layouts/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/public/next.svg -------------------------------------------------------------------------------- /Video 129/layouts/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/public/vercel.svg -------------------------------------------------------------------------------- /Video 129/layouts/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 129/layouts/tailwind.config.js -------------------------------------------------------------------------------- /Video 13/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 13/index.html -------------------------------------------------------------------------------- /Video 130/passop-mongo/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 130/passop-mongo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/.gitignore -------------------------------------------------------------------------------- /Video 130/passop-mongo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/README.md -------------------------------------------------------------------------------- /Video 130/passop-mongo/backend/.env: -------------------------------------------------------------------------------- 1 | MONGO_URI=mongodb://localhost:27017 2 | DB_NAME=passop -------------------------------------------------------------------------------- /Video 130/passop-mongo/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/backend/package-lock.json -------------------------------------------------------------------------------- /Video 130/passop-mongo/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/backend/package.json -------------------------------------------------------------------------------- /Video 130/passop-mongo/backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/backend/server.js -------------------------------------------------------------------------------- /Video 130/passop-mongo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/index.html -------------------------------------------------------------------------------- /Video 130/passop-mongo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/package-lock.json -------------------------------------------------------------------------------- /Video 130/passop-mongo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/package.json -------------------------------------------------------------------------------- /Video 130/passop-mongo/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/postcss.config.js -------------------------------------------------------------------------------- /Video 130/passop-mongo/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/public/favicon.png -------------------------------------------------------------------------------- /Video 130/passop-mongo/public/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/public/icons/eye.png -------------------------------------------------------------------------------- /Video 130/passop-mongo/public/icons/eyecross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/public/icons/eyecross.png -------------------------------------------------------------------------------- /Video 130/passop-mongo/public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/public/icons/github.svg -------------------------------------------------------------------------------- /Video 130/passop-mongo/public/icons/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/public/icons/heart.png -------------------------------------------------------------------------------- /Video 130/passop-mongo/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/public/vite.svg -------------------------------------------------------------------------------- /Video 130/passop-mongo/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Video 130/passop-mongo/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/src/App.jsx -------------------------------------------------------------------------------- /Video 130/passop-mongo/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/src/assets/react.svg -------------------------------------------------------------------------------- /Video 130/passop-mongo/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/src/components/Footer.jsx -------------------------------------------------------------------------------- /Video 130/passop-mongo/src/components/Manager.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/src/components/Manager.jsx -------------------------------------------------------------------------------- /Video 130/passop-mongo/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/src/components/Navbar.jsx -------------------------------------------------------------------------------- /Video 130/passop-mongo/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/src/index.css -------------------------------------------------------------------------------- /Video 130/passop-mongo/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/src/main.jsx -------------------------------------------------------------------------------- /Video 130/passop-mongo/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/tailwind.config.js -------------------------------------------------------------------------------- /Video 130/passop-mongo/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop-mongo/vite.config.js -------------------------------------------------------------------------------- /Video 130/passop/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/.eslintrc.cjs -------------------------------------------------------------------------------- /Video 130/passop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/.gitignore -------------------------------------------------------------------------------- /Video 130/passop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/README.md -------------------------------------------------------------------------------- /Video 130/passop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/index.html -------------------------------------------------------------------------------- /Video 130/passop/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/package-lock.json -------------------------------------------------------------------------------- /Video 130/passop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/package.json -------------------------------------------------------------------------------- /Video 130/passop/passop.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/passop.zip -------------------------------------------------------------------------------- /Video 130/passop/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/postcss.config.js -------------------------------------------------------------------------------- /Video 130/passop/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/public/favicon.png -------------------------------------------------------------------------------- /Video 130/passop/public/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/public/icons/eye.png -------------------------------------------------------------------------------- /Video 130/passop/public/icons/eyecross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/public/icons/eyecross.png -------------------------------------------------------------------------------- /Video 130/passop/public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/public/icons/github.svg -------------------------------------------------------------------------------- /Video 130/passop/public/icons/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/public/icons/heart.png -------------------------------------------------------------------------------- /Video 130/passop/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/public/vite.svg -------------------------------------------------------------------------------- /Video 130/passop/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Video 130/passop/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/src/App.jsx -------------------------------------------------------------------------------- /Video 130/passop/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/src/assets/react.svg -------------------------------------------------------------------------------- /Video 130/passop/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/src/components/Footer.jsx -------------------------------------------------------------------------------- /Video 130/passop/src/components/Manager.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/src/components/Manager.jsx -------------------------------------------------------------------------------- /Video 130/passop/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/src/components/Navbar.jsx -------------------------------------------------------------------------------- /Video 130/passop/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/src/index.css -------------------------------------------------------------------------------- /Video 130/passop/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/src/main.jsx -------------------------------------------------------------------------------- /Video 130/passop/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/tailwind.config.js -------------------------------------------------------------------------------- /Video 130/passop/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 130/passop/vite.config.js -------------------------------------------------------------------------------- /Video 131/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 131/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/.gitignore -------------------------------------------------------------------------------- /Video 131/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/README.md -------------------------------------------------------------------------------- /Video 131/actions/useractions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/actions/useractions.js -------------------------------------------------------------------------------- /Video 131/app/[username]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/app/[username]/page.js -------------------------------------------------------------------------------- /Video 131/app/about/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/app/about/page.js -------------------------------------------------------------------------------- /Video 131/app/api/auth/[...nextauth]/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/app/api/auth/[...nextauth]/route.js -------------------------------------------------------------------------------- /Video 131/app/api/razorpay/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/app/api/razorpay/route.js -------------------------------------------------------------------------------- /Video 131/app/dashboard/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/app/dashboard/page.js -------------------------------------------------------------------------------- /Video 131/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/app/favicon.ico -------------------------------------------------------------------------------- /Video 131/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/app/globals.css -------------------------------------------------------------------------------- /Video 131/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/app/layout.js -------------------------------------------------------------------------------- /Video 131/app/login/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/app/login/page.js -------------------------------------------------------------------------------- /Video 131/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/app/page.js -------------------------------------------------------------------------------- /Video 131/components/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/components/Dashboard.js -------------------------------------------------------------------------------- /Video 131/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/components/Footer.js -------------------------------------------------------------------------------- /Video 131/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/components/Navbar.js -------------------------------------------------------------------------------- /Video 131/components/PaymentPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/components/PaymentPage.js -------------------------------------------------------------------------------- /Video 131/components/SessionWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/components/SessionWrapper.js -------------------------------------------------------------------------------- /Video 131/db/connectDb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/db/connectDb.js -------------------------------------------------------------------------------- /Video 131/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/jsconfig.json -------------------------------------------------------------------------------- /Video 131/models/Payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/models/Payment.js -------------------------------------------------------------------------------- /Video 131/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/models/User.js -------------------------------------------------------------------------------- /Video 131/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/next.config.mjs -------------------------------------------------------------------------------- /Video 131/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/package-lock.json -------------------------------------------------------------------------------- /Video 131/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/package.json -------------------------------------------------------------------------------- /Video 131/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/postcss.config.js -------------------------------------------------------------------------------- /Video 131/public/avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/public/avatar.gif -------------------------------------------------------------------------------- /Video 131/public/coin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/public/coin.gif -------------------------------------------------------------------------------- /Video 131/public/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/public/group.gif -------------------------------------------------------------------------------- /Video 131/public/man.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/public/man.gif -------------------------------------------------------------------------------- /Video 131/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/public/next.svg -------------------------------------------------------------------------------- /Video 131/public/tea.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/public/tea.gif -------------------------------------------------------------------------------- /Video 131/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/public/vercel.svg -------------------------------------------------------------------------------- /Video 131/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 131/tailwind.config.js -------------------------------------------------------------------------------- /Video 132/next-navigation-tutorial/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 132/next-navigation-tutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 132/next-navigation-tutorial/.gitignore -------------------------------------------------------------------------------- /Video 132/next-navigation-tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 132/next-navigation-tutorial/README.md -------------------------------------------------------------------------------- /Video 132/next-navigation-tutorial/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 132/next-navigation-tutorial/app/layout.js -------------------------------------------------------------------------------- /Video 132/next-navigation-tutorial/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 132/next-navigation-tutorial/app/page.js -------------------------------------------------------------------------------- /Video 132/next-navigation-tutorial/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 132/next-navigation-tutorial/jsconfig.json -------------------------------------------------------------------------------- /Video 132/next-navigation-tutorial/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 132/next-navigation-tutorial/package.json -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/.gitignore -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/README.md -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/app/favicon.ico -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/app/globals.css -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/app/layout.js -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/app/page.js -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/jsconfig.json -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/next.config.mjs -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/package-lock.json -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/package.json -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/postcss.config.mjs -------------------------------------------------------------------------------- /Video 133/ssr-ssg-isr/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 133/ssr-ssg-isr/tailwind.config.js -------------------------------------------------------------------------------- /Video 134/environment-variables/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 134/environment-variables/.env -------------------------------------------------------------------------------- /Video 134/environment-variables/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 134/environment-variables/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 134/environment-variables/.gitignore -------------------------------------------------------------------------------- /Video 134/environment-variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 134/environment-variables/README.md -------------------------------------------------------------------------------- /Video 134/environment-variables/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 134/environment-variables/app/favicon.ico -------------------------------------------------------------------------------- /Video 134/environment-variables/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 134/environment-variables/app/globals.css -------------------------------------------------------------------------------- /Video 134/environment-variables/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 134/environment-variables/app/layout.js -------------------------------------------------------------------------------- /Video 134/environment-variables/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 134/environment-variables/app/page.js -------------------------------------------------------------------------------- /Video 134/environment-variables/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 134/environment-variables/jsconfig.json -------------------------------------------------------------------------------- /Video 134/environment-variables/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 134/environment-variables/package.json -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/.gitignore -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/README.md -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/app/about/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/app/about/page.js -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/app/favicon.ico -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/app/globals.css -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/app/layout.js -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/app/page.js -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/jsconfig.json -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/next.config.mjs -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/package-lock.json -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/package.json -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/postcss.config.mjs -------------------------------------------------------------------------------- /Video 135/styles-in-nextjs/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 135/styles-in-nextjs/tailwind.config.js -------------------------------------------------------------------------------- /Video 136/bitlinks/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 136/bitlinks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/.gitignore -------------------------------------------------------------------------------- /Video 136/bitlinks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/README.md -------------------------------------------------------------------------------- /Video 136/bitlinks/app/[shorturl]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/app/[shorturl]/page.js -------------------------------------------------------------------------------- /Video 136/bitlinks/app/api/generate/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/app/api/generate/route.js -------------------------------------------------------------------------------- /Video 136/bitlinks/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/app/favicon.ico -------------------------------------------------------------------------------- /Video 136/bitlinks/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /Video 136/bitlinks/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /Video 136/bitlinks/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/app/globals.css -------------------------------------------------------------------------------- /Video 136/bitlinks/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/app/layout.js -------------------------------------------------------------------------------- /Video 136/bitlinks/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/app/page.js -------------------------------------------------------------------------------- /Video 136/bitlinks/app/shorten/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/app/shorten/page.js -------------------------------------------------------------------------------- /Video 136/bitlinks/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/components/Navbar.js -------------------------------------------------------------------------------- /Video 136/bitlinks/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/jsconfig.json -------------------------------------------------------------------------------- /Video 136/bitlinks/lib/mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/lib/mongodb.js -------------------------------------------------------------------------------- /Video 136/bitlinks/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/next.config.mjs -------------------------------------------------------------------------------- /Video 136/bitlinks/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/package-lock.json -------------------------------------------------------------------------------- /Video 136/bitlinks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/package.json -------------------------------------------------------------------------------- /Video 136/bitlinks/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/postcss.config.mjs -------------------------------------------------------------------------------- /Video 136/bitlinks/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/public/file.svg -------------------------------------------------------------------------------- /Video 136/bitlinks/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/public/globe.svg -------------------------------------------------------------------------------- /Video 136/bitlinks/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/public/next.svg -------------------------------------------------------------------------------- /Video 136/bitlinks/public/vector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/public/vector.jpg -------------------------------------------------------------------------------- /Video 136/bitlinks/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/public/vercel.svg -------------------------------------------------------------------------------- /Video 136/bitlinks/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/public/window.svg -------------------------------------------------------------------------------- /Video 136/bitlinks/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 136/bitlinks/tailwind.config.js -------------------------------------------------------------------------------- /Video 137/linktree-clone/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /Video 137/linktree-clone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/.gitignore -------------------------------------------------------------------------------- /Video 137/linktree-clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/README.md -------------------------------------------------------------------------------- /Video 137/linktree-clone/app/[handle]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/app/[handle]/page.js -------------------------------------------------------------------------------- /Video 137/linktree-clone/app/api/add/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/app/api/add/route.js -------------------------------------------------------------------------------- /Video 137/linktree-clone/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/app/favicon.ico -------------------------------------------------------------------------------- /Video 137/linktree-clone/app/generate/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/app/generate/page.js -------------------------------------------------------------------------------- /Video 137/linktree-clone/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/app/globals.css -------------------------------------------------------------------------------- /Video 137/linktree-clone/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/app/layout.js -------------------------------------------------------------------------------- /Video 137/linktree-clone/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/app/page.js -------------------------------------------------------------------------------- /Video 137/linktree-clone/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/components/Navbar.js -------------------------------------------------------------------------------- /Video 137/linktree-clone/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/jsconfig.json -------------------------------------------------------------------------------- /Video 137/linktree-clone/lib/mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/lib/mongodb.js -------------------------------------------------------------------------------- /Video 137/linktree-clone/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/next.config.mjs -------------------------------------------------------------------------------- /Video 137/linktree-clone/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/package-lock.json -------------------------------------------------------------------------------- /Video 137/linktree-clone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/package.json -------------------------------------------------------------------------------- /Video 137/linktree-clone/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/postcss.config.mjs -------------------------------------------------------------------------------- /Video 137/linktree-clone/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/public/file.svg -------------------------------------------------------------------------------- /Video 137/linktree-clone/public/generate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/public/generate.png -------------------------------------------------------------------------------- /Video 137/linktree-clone/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/public/globe.svg -------------------------------------------------------------------------------- /Video 137/linktree-clone/public/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/public/home.png -------------------------------------------------------------------------------- /Video 137/linktree-clone/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/public/next.svg -------------------------------------------------------------------------------- /Video 137/linktree-clone/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/public/vercel.svg -------------------------------------------------------------------------------- /Video 137/linktree-clone/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/public/window.svg -------------------------------------------------------------------------------- /Video 137/linktree-clone/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 137/linktree-clone/tailwind.config.js -------------------------------------------------------------------------------- /Video 14/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 14/index.html -------------------------------------------------------------------------------- /Video 15/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 15/index.html -------------------------------------------------------------------------------- /Video 15/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 15/style.css -------------------------------------------------------------------------------- /Video 16/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 16/index.html -------------------------------------------------------------------------------- /Video 17/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 17/index.html -------------------------------------------------------------------------------- /Video 18/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 18/index.html -------------------------------------------------------------------------------- /Video 19/colors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 19/colors.html -------------------------------------------------------------------------------- /Video 19/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 19/index.html -------------------------------------------------------------------------------- /Video 20/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 20/index.html -------------------------------------------------------------------------------- /Video 21/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 21/index.html -------------------------------------------------------------------------------- /Video 22/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 22/index.html -------------------------------------------------------------------------------- /Video 23/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 23/index.html -------------------------------------------------------------------------------- /Video 24/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 24/index.html -------------------------------------------------------------------------------- /Video 25/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 25/index.html -------------------------------------------------------------------------------- /Video 26/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 26/index.html -------------------------------------------------------------------------------- /Video 27/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 27/index.html -------------------------------------------------------------------------------- /Video 28/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 28/index.html -------------------------------------------------------------------------------- /Video 29/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 29/card.png -------------------------------------------------------------------------------- /Video 29/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 29/index.html -------------------------------------------------------------------------------- /Video 30/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 30/index.html -------------------------------------------------------------------------------- /Video 31/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 31/index.html -------------------------------------------------------------------------------- /Video 32/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 32/card.png -------------------------------------------------------------------------------- /Video 32/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 32/index.html -------------------------------------------------------------------------------- /Video 33/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 33/index.html -------------------------------------------------------------------------------- /Video 34/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 34/index.html -------------------------------------------------------------------------------- /Video 35/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 35/index.html -------------------------------------------------------------------------------- /Video 36/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 36/index.html -------------------------------------------------------------------------------- /Video 38/flexbox.drawio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 38/flexbox.drawio.pdf -------------------------------------------------------------------------------- /Video 38/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 38/index.html -------------------------------------------------------------------------------- /Video 39/grid-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 39/grid-1.html -------------------------------------------------------------------------------- /Video 39/grid-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 39/grid-2.html -------------------------------------------------------------------------------- /Video 40/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 40/index.html -------------------------------------------------------------------------------- /Video 41/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 41/index.html -------------------------------------------------------------------------------- /Video 42/Demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 42/Demo.html -------------------------------------------------------------------------------- /Video 42/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 42/index.html -------------------------------------------------------------------------------- /Video 42/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 42/style.css -------------------------------------------------------------------------------- /Video 43/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 43/index.html -------------------------------------------------------------------------------- /Video 44/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 44/index.html -------------------------------------------------------------------------------- /Video 45/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 45/index.html -------------------------------------------------------------------------------- /Video 46/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 46/index.html -------------------------------------------------------------------------------- /Video 47/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 47/index.html -------------------------------------------------------------------------------- /Video 47/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 47/style.css -------------------------------------------------------------------------------- /Video 47/ue_english.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 47/ue_english.exe -------------------------------------------------------------------------------- /Video 48/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 48/index.html -------------------------------------------------------------------------------- /Video 49/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 49/index.html -------------------------------------------------------------------------------- /Video 50/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 50/index.html -------------------------------------------------------------------------------- /Video 51/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 51/index.html -------------------------------------------------------------------------------- /Video 52/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 52/index.html -------------------------------------------------------------------------------- /Video 53/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 53/assets/images/bg.jpg -------------------------------------------------------------------------------- /Video 53/assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 53/assets/images/logo.svg -------------------------------------------------------------------------------- /Video 53/assets/videos/video1.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 53/assets/videos/video1.m4v -------------------------------------------------------------------------------- /Video 53/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 53/favicon.ico -------------------------------------------------------------------------------- /Video 53/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 53/index.html -------------------------------------------------------------------------------- /Video 53/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 53/style.css -------------------------------------------------------------------------------- /Video 54/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 54/index.html -------------------------------------------------------------------------------- /Video 54/new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 54/new.js -------------------------------------------------------------------------------- /Video 54/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 54/script.js -------------------------------------------------------------------------------- /Video 55/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 55/index.html -------------------------------------------------------------------------------- /Video 55/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 55/script.js -------------------------------------------------------------------------------- /Video 56/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 56/index.js -------------------------------------------------------------------------------- /Video 57/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 57/index.js -------------------------------------------------------------------------------- /Video 58/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 58/index.js -------------------------------------------------------------------------------- /Video 59/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 59/index.js -------------------------------------------------------------------------------- /Video 60/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 60/index.js -------------------------------------------------------------------------------- /Video 61/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 61/index.html -------------------------------------------------------------------------------- /Video 61/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 61/index.js -------------------------------------------------------------------------------- /Video 62/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 62/index.js -------------------------------------------------------------------------------- /Video 63/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 63/index.html -------------------------------------------------------------------------------- /Video 63/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 63/index.js -------------------------------------------------------------------------------- /Video 63/loops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 63/loops.js -------------------------------------------------------------------------------- /Video 63/mfr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 63/mfr.js -------------------------------------------------------------------------------- /Video 64/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 64/index.html -------------------------------------------------------------------------------- /Video 65/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 65/index.html -------------------------------------------------------------------------------- /Video 66/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 66/index.html -------------------------------------------------------------------------------- /Video 67/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 67/index.html -------------------------------------------------------------------------------- /Video 67/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 67/script.js -------------------------------------------------------------------------------- /Video 68/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 68/index.html -------------------------------------------------------------------------------- /Video 68/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 68/script.js -------------------------------------------------------------------------------- /Video 69/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 69/index.html -------------------------------------------------------------------------------- /Video 69/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 69/script.js -------------------------------------------------------------------------------- /Video 70/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 70/index.html -------------------------------------------------------------------------------- /Video 71/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 71/index.html -------------------------------------------------------------------------------- /Video 72/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 72/index.html -------------------------------------------------------------------------------- /Video 72/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 72/script.js -------------------------------------------------------------------------------- /Video 73/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 73/card.png -------------------------------------------------------------------------------- /Video 73/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 73/index.html -------------------------------------------------------------------------------- /Video 73/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 73/script.js -------------------------------------------------------------------------------- /Video 74/eventBubbling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 74/eventBubbling.html -------------------------------------------------------------------------------- /Video 74/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 74/index.html -------------------------------------------------------------------------------- /Video 74/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 74/script.js -------------------------------------------------------------------------------- /Video 75/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 75/index.html -------------------------------------------------------------------------------- /Video 75/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 75/promise.js -------------------------------------------------------------------------------- /Video 75/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 75/script.js -------------------------------------------------------------------------------- /Video 76/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 76/index.html -------------------------------------------------------------------------------- /Video 76/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 76/script.js -------------------------------------------------------------------------------- /Video 77/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 77/card.png -------------------------------------------------------------------------------- /Video 77/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 77/index.html -------------------------------------------------------------------------------- /Video 77/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 77/script.js -------------------------------------------------------------------------------- /Video 78/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 78/index.html -------------------------------------------------------------------------------- /Video 79/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 79/index.html -------------------------------------------------------------------------------- /Video 79/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 79/script.js -------------------------------------------------------------------------------- /Video 80/gs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 80/gs.js -------------------------------------------------------------------------------- /Video 80/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 80/index.html -------------------------------------------------------------------------------- /Video 80/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 80/script.js -------------------------------------------------------------------------------- /Video 81/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 81/index.html -------------------------------------------------------------------------------- /Video 82/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 82/index.html -------------------------------------------------------------------------------- /Video 82/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 82/script.js -------------------------------------------------------------------------------- /Video 83/Problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 83/Problems.md -------------------------------------------------------------------------------- /Video 83/Solutions/01_houses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 83/Solutions/01_houses.js -------------------------------------------------------------------------------- /Video 83/Solutions/07_localStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 83/Solutions/07_localStorage.html -------------------------------------------------------------------------------- /Video 85/myserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 85/myserver.js -------------------------------------------------------------------------------- /Video 85/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 85/package-lock.json -------------------------------------------------------------------------------- /Video 85/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 85/package.json -------------------------------------------------------------------------------- /Video 85/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 85/server.js -------------------------------------------------------------------------------- /Video 86/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 86/index.html -------------------------------------------------------------------------------- /Video 86/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 86/main.js -------------------------------------------------------------------------------- /Video 86/mymodule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 86/mymodule.js -------------------------------------------------------------------------------- /Video 86/mymodule2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 86/mymodule2.js -------------------------------------------------------------------------------- /Video 86/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 86/package-lock.json -------------------------------------------------------------------------------- /Video 86/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 86/package.json -------------------------------------------------------------------------------- /Video 87/aboutpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 87/aboutpath.js -------------------------------------------------------------------------------- /Video 87/harry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 87/harry -------------------------------------------------------------------------------- /Video 87/harry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 87/harry.txt -------------------------------------------------------------------------------- /Video 87/harry2.txt: -------------------------------------------------------------------------------- 1 | Harry is a good boy2 -------------------------------------------------------------------------------- /Video 87/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 87/main.js -------------------------------------------------------------------------------- /Video 87/mainpromise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 87/mainpromise.js -------------------------------------------------------------------------------- /Video 87/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 87/package.json -------------------------------------------------------------------------------- /Video 88/Agenda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 88/Agenda.md -------------------------------------------------------------------------------- /Video 88/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 88/main.js -------------------------------------------------------------------------------- /Video 88/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 88/package-lock.json -------------------------------------------------------------------------------- /Video 88/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 88/package.json -------------------------------------------------------------------------------- /Video 88/public/harry.txt: -------------------------------------------------------------------------------- 1 | This is a public file -------------------------------------------------------------------------------- /Video 89/Agenda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 89/Agenda.md -------------------------------------------------------------------------------- /Video 89/Response Methods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 89/Response Methods.png -------------------------------------------------------------------------------- /Video 89/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 89/main.js -------------------------------------------------------------------------------- /Video 89/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 89/package-lock.json -------------------------------------------------------------------------------- /Video 89/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 89/package.json -------------------------------------------------------------------------------- /Video 89/public/mypage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 89/public/mypage.html -------------------------------------------------------------------------------- /Video 89/routes/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 89/routes/blog.js -------------------------------------------------------------------------------- /Video 89/routes/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 89/routes/shop.js -------------------------------------------------------------------------------- /Video 89/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 89/templates/index.html -------------------------------------------------------------------------------- /Video 90/logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 90/logs.txt -------------------------------------------------------------------------------- /Video 90/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 90/main.js -------------------------------------------------------------------------------- /Video 90/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 90/package-lock.json -------------------------------------------------------------------------------- /Video 90/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 90/package.json -------------------------------------------------------------------------------- /Video 90/public/harry.txt: -------------------------------------------------------------------------------- 1 | Harry -------------------------------------------------------------------------------- /Video 90/routes/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 90/routes/blog.js -------------------------------------------------------------------------------- /Video 91/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 91/index.js -------------------------------------------------------------------------------- /Video 92/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 92/index.js -------------------------------------------------------------------------------- /Video 92/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 92/package-lock.json -------------------------------------------------------------------------------- /Video 92/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 92/package.json -------------------------------------------------------------------------------- /Video 92/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 92/views/index.ejs -------------------------------------------------------------------------------- /Video 92/views/navbar.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 92/views/navbar.ejs -------------------------------------------------------------------------------- /Video 93/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 93/index.js -------------------------------------------------------------------------------- /Video 93/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 93/package.json -------------------------------------------------------------------------------- /Video 94/playground1.mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 94/playground1.mongodb.js -------------------------------------------------------------------------------- /Video 95/crud.mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 95/crud.mongodb.js -------------------------------------------------------------------------------- /Video 96/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 96/main.js -------------------------------------------------------------------------------- /Video 96/models/Todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 96/models/Todo.js -------------------------------------------------------------------------------- /Video 96/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 96/package-lock.json -------------------------------------------------------------------------------- /Video 96/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 96/package.json -------------------------------------------------------------------------------- /Video 97/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 97/main.js -------------------------------------------------------------------------------- /Video 98/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 98/index.html -------------------------------------------------------------------------------- /Video 98/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 98/package-lock.json -------------------------------------------------------------------------------- /Video 98/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 98/package.json -------------------------------------------------------------------------------- /Video 98/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 98/setup.md -------------------------------------------------------------------------------- /Video 98/src/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 98/src/input.css -------------------------------------------------------------------------------- /Video 98/src/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 98/src/output.css -------------------------------------------------------------------------------- /Video 98/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 98/tailwind.config.js -------------------------------------------------------------------------------- /Video 99/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 99/main.js -------------------------------------------------------------------------------- /Video 99/models/Employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 99/models/Employee.js -------------------------------------------------------------------------------- /Video 99/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 99/package-lock.json -------------------------------------------------------------------------------- /Video 99/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 99/package.json -------------------------------------------------------------------------------- /Video 99/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 99/question.md -------------------------------------------------------------------------------- /Video 99/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/Video 99/views/index.ejs -------------------------------------------------------------------------------- /video 117/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/.eslintrc.cjs -------------------------------------------------------------------------------- /video 117/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/.gitignore -------------------------------------------------------------------------------- /video 117/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/README.md -------------------------------------------------------------------------------- /video 117/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/index.html -------------------------------------------------------------------------------- /video 117/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/package-lock.json -------------------------------------------------------------------------------- /video 117/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/package.json -------------------------------------------------------------------------------- /video 117/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/public/vite.svg -------------------------------------------------------------------------------- /video 117/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/src/App.css -------------------------------------------------------------------------------- /video 117/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/src/App.jsx -------------------------------------------------------------------------------- /video 117/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/src/assets/react.svg -------------------------------------------------------------------------------- /video 117/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/src/index.css -------------------------------------------------------------------------------- /video 117/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/src/main.jsx -------------------------------------------------------------------------------- /video 117/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeWithHarry/Sigma-Web-Dev-Course/HEAD/video 117/vite.config.js --------------------------------------------------------------------------------