Skip to content

Commit

Permalink
user profile,delete,logout functionalities
Browse files Browse the repository at this point in the history
  • Loading branch information
k-vijay-05 committed Nov 16, 2024
1 parent b734b21 commit 0b4b123
Show file tree
Hide file tree
Showing 9 changed files with 685 additions and 25 deletions.
196 changes: 179 additions & 17 deletions package-lock.json

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

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,21 @@
"preview": "vite preview"
},
"dependencies": {
"@react-google-maps/api": "^2.20.3",
"@dicebear/avatars": "^4.10.8",
"@dicebear/avatars-initials-sprites": "^4.10.8",
"@react-google-maps/api": "^2.20.3",
"axios": "^1.7.7",
"firebase": "^10.4.0",
"localforage": "^1.10.0",
"lucide-react": "^0.460.0",
"match-sorter": "^6.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^4.11.0",
"react-router-dom": "^6.16.0",
"react-toastify": "^10.0.6",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.5",
"sort-by": "^1.2.0",
"swiper": "^10.3.1",
"uuid": "^11.0.3"
Expand Down
8 changes: 8 additions & 0 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ import HotelList from './Components/HotelList/HotelList';
import CurrTour from './Pages/CurrTour/CurrTour';
import CurrMap from './Pages/CurrMap/CurrMap';
import { AuthContext } from './Context/AuthContext';
import UserProfile from './Components/UserProfile/UserProfile';


function App(){
const router = createBrowserRouter([
{
Expand Down Expand Up @@ -73,6 +76,11 @@ const router = createBrowserRouter([
{
path:'/test',
element:<HotelList></HotelList>
},
{
path:'/userprofile/:id',
element:<UserProfile></UserProfile>

}
]
},
Expand Down
Loading

0 comments on commit 0b4b123

Please # to comment.