Skip to content

Commit

Permalink
Merge pull request #140 from SUJAY-HK/main
Browse files Browse the repository at this point in the history
Forget Password feature added
  • Loading branch information
Mujtabaa07 authored Jan 3, 2025
2 parents 6876b88 + e7b4a99 commit de5b4bb
Show file tree
Hide file tree
Showing 5 changed files with 368 additions and 22 deletions.
226 changes: 226 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@headlessui/react": "^2.1.8",
"@heroicons/react": "^2.1.5",
"@lottiefiles/dotlottie-react": "^0.12.0",
"@reduxjs/toolkit": "^2.2.7",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"framer-motion": "^11.9.0",
"gsap": "^3.12.5",
"lottie-react": "^2.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-locomotive-scroll": "^0.2.2",
Expand Down
6 changes: 6 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ import Profile from './Pages/profile';
import Checkout from './Pages/checkOut';
import Testimonial from './Pages/Testimonial';
import PremiumBeans from './Pages/PremiumBeans';

import ForgetPassword from './Pages/ForgetPassword';


import ExpertBaristas from './Pages/ExpertBaristas';
import Reviews from './componets/Reviews'


const AppContainer = styled.div`
display: flex;
flex-direction: column;
Expand All @@ -41,6 +46,7 @@ function App() {
<Route path="/" element={<Home />} />
<Route path="/login" element={<Login />} />
<Route path="/register" element={<Register />} />
<Route path="/forget-password" element={<ForgetPassword />} />
<Route path="/home" element={<Home />} />
<Route path="/shop" element={<Shop />} />
<Route path="/cart" element={<Cart />} />
Expand Down
Loading

0 comments on commit de5b4bb

Please sign in to comment.