├── src ├── App.css ├── config │ └── sokect.ts ├── Components │ ├── Checkout │ │ ├── input.css │ │ └── BookingDetails.tsx │ ├── Landing_page │ │ ├── Category │ │ │ ├── cate.css │ │ │ └── Category.tsx │ │ ├── Contents │ │ │ ├── Content.css │ │ │ └── Contents.tsx │ │ ├── Header │ │ │ └── Header.css │ │ ├── Cards │ │ │ └── Package.css │ │ ├── PackageCard │ │ │ ├── package.css │ │ │ └── Package.tsx │ │ ├── Chat │ │ │ └── Chat.tsx │ │ ├── HomePage.tsx │ │ ├── Footer │ │ │ └── Footer.tsx │ │ └── Navbar │ │ │ └── Navbar.tsx │ ├── Profile │ │ ├── Componet │ │ │ ├── Package.css │ │ │ ├── PackageDetails.tsx │ │ │ └── PackageTableRows.tsx │ │ └── UI │ │ │ ├── Footer.css │ │ │ ├── Silder.css │ │ │ ├── HeaderProfile.tsx │ │ │ ├── SideBar.tsx │ │ │ ├── ContantProfile.tsx │ │ │ └── Footer.tsx │ ├── ServicePage │ │ └── Service.css │ ├── ContactPage │ │ ├── Contact.css │ │ └── Contact.tsx │ ├── Vendor_register │ │ ├── Register.css │ │ └── Register.tsx │ ├── Admin │ │ ├── Login │ │ │ ├── Login.css │ │ │ ├── Login.tsx │ │ │ └── Form.tsx │ │ ├── User │ │ │ └── User.tsx │ │ ├── Booking │ │ │ └── Booking.tsx │ │ ├── Chat │ │ │ ├── Chat.tsx │ │ │ ├── userLisit.tsx │ │ │ └── Converstion.tsx │ │ ├── Destination │ │ │ └── Destination.tsx │ │ ├── Dashoard │ │ │ ├── Bar.tsx │ │ │ ├── Pie.tsx │ │ │ └── Dashboard.tsx │ │ ├── ReactTable │ │ │ ├── PackageList.tsx │ │ │ └── UserManage.tsx │ │ ├── DataTable │ │ │ ├── catetable.tsx │ │ │ ├── actvtityTable.tsx │ │ │ └── destinTable.tsx │ │ └── Sidebar │ │ │ └── Sidebar.tsx │ ├── SinglePage │ │ ├── Header.css │ │ ├── Calendar.tsx │ │ ├── range.tsx │ │ ├── smview │ │ │ └── overView.tsx │ │ ├── Gallery.tsx │ │ ├── DestinationView.tsx │ │ ├── Overview.tsx │ │ └── Navbar.tsx │ ├── Toastify │ │ ├── Hot_toaster.tsx │ │ └── Toastify.tsx │ ├── PackageCategory │ │ └── Package.css │ ├── Loader │ │ └── Loader.tsx │ ├── DestinationPage │ │ └── Destination.css │ ├── AboutPage │ │ └── About.css │ ├── Vendor_login │ │ ├── Login.css │ │ ├── GoogleSignup.tsx │ │ └── Login.tsx │ ├── Message │ │ ├── 500.tsx │ │ ├── Success.tsx │ │ └── 401.tsx │ ├── Payment │ │ └── MobileView.tsx │ ├── Form │ │ └── authLogin.tsx │ └── AuthVerify │ │ └── VerifyPage.tsx ├── Assets │ ├── bg.jpg │ ├── k3.jpg │ ├── k4.jpg │ ├── k6.jpg │ ├── k7.jpg │ ├── k8.jpg │ ├── mo.jpg │ ├── p.jfif │ ├── p2.jpg │ ├── s.jpg │ ├── s1.jpg │ ├── 401.png │ ├── aro.png │ ├── bg.jfif │ ├── bg3.webp │ ├── bot.png │ ├── boy.png │ ├── cash.png │ ├── chat.png │ ├── city.jpg │ ├── des3.jpg │ ├── img.webp │ ├── logo.png │ ├── map.png │ ├── map_.jpg │ ├── otp.png │ ├── sea.jpg │ ├── taj.jpg │ ├── to.jfif │ ├── upi.png │ ├── visa.png │ ├── Jaipur.jpg │ ├── Paris-1.png │ ├── aboutbg.jpg │ ├── ballon.jpg │ ├── cate.3.webp │ ├── cate1.jpg │ ├── cate2.jfif │ ├── cate4.jpg │ ├── cate5.jpg │ ├── cate6.jpg │ ├── chat1.png │ ├── des1.webp │ ├── des2.webp │ ├── google.png │ ├── guests.png │ ├── images.jfif │ ├── kerala.jfif │ ├── kerala1.jpg │ ├── landing.jpg │ ├── locte.png │ ├── loginbg.png │ ├── logo1.png │ ├── logo2.png │ ├── logo3.png │ ├── logo4.png │ ├── luxu1.jpg │ ├── luxury.jpg │ ├── mainbg.jfif │ ├── manali.webp │ ├── manali1.jpg │ ├── map2.jfif │ ├── mapIcon.png │ ├── sucss.jpg │ ├── travel.png │ ├── yellow.jpg │ ├── aboutbg2.jpg │ ├── calendar.png │ ├── climbing.png │ ├── contact.webp │ ├── download.jfif │ ├── honnymoon.jpg │ ├── package.webp │ ├── package1.jpg │ ├── service1.png │ ├── service2.png │ ├── service3.png │ ├── service4.png │ ├── service5.png │ ├── service6.png │ ├── servicebg.jpg │ ├── adminlogin.jpg │ ├── destination.webp │ ├── servicebg2.jpg │ ├── abouticon1 (1).png │ ├── abouticon2 (3).png │ ├── abouticon3 (2).png │ ├── download (1).jfif │ ├── download (2).jfif │ ├── download (5).jfif │ └── world-wide-shipping-wall-mural-3.jpg ├── Interface │ ├── activity.interface.ts │ ├── category.interface.ts │ ├── headerFillter.ts │ ├── auth_interface.ts │ └── destination.interface.ts ├── index.css ├── Pages │ ├── User │ │ ├── ChatPage.tsx │ │ ├── Error401.tsx │ │ ├── AboutPage.tsx │ │ ├── Error500.tsx │ │ ├── ContactPage.tsx │ │ ├── Package.tsx │ │ ├── SuccessPage.tsx │ │ ├── ServicePage.tsx │ │ ├── Landing_page.tsx │ │ ├── Login_page.tsx │ │ ├── Register_page.tsx │ │ ├── AuthVerify.tsx │ │ ├── DestinationPage.tsx │ │ ├── BookingDetails.tsx │ │ ├── PackageView.tsx │ │ ├── Payment.tsx │ │ └── ProfilePage.tsx │ └── Admin │ │ ├── AdminLogin.tsx │ │ ├── AddDestinPage.tsx │ │ ├── EditDestinPage.tsx │ │ ├── AdminCate.tsx │ │ ├── AdminActvity.tsx │ │ ├── ChatPage.tsx │ │ ├── Dashboard.tsx │ │ ├── AdminUserManage.tsx │ │ ├── AdminDestinaton.tsx │ │ └── BookingManage.tsx ├── Api │ ├── adminCategory │ │ ├── fetchCategory.ts │ │ ├── category.ts │ │ └── adminActvity │ │ │ └── actvtiyApi.ts │ ├── Chat │ │ ├── userLisit.ts │ │ ├── fetchMessage.ts │ │ └── sendChatApi.ts │ ├── admin │ │ ├── adminLogin │ │ │ └── LoginApi.ts │ │ ├── adminBooking │ │ │ └── BookingFetch.ts │ │ ├── adminActvity │ │ │ ├── fetchActivity.ts │ │ │ └── actvtiyApi.ts │ │ ├── adminDestination │ │ │ ├── fetchData.ts │ │ │ ├── addDestination.ts │ │ │ └── editDestin.ts │ │ ├── adminUserManage │ │ │ └── userFetchApi.ts │ │ └── adminDashboard │ │ │ └── fetchCount.ts │ └── user │ │ ├── destinationApi │ │ ├── packageCateApi.ts │ │ └── destinView.ts │ │ ├── Profile │ │ ├── CancelApi.ts │ │ ├── DestinaFetchApi.ts │ │ ├── bookingDetails.ts │ │ ├── PasswordChange.ts │ │ └── UserUpdation.ts │ │ ├── fillterApi │ │ └── fillterApi.ts │ │ ├── Auth │ │ └── AuthApi.ts │ │ └── bookingApi │ │ └── bookingApi.ts ├── Axios │ └── axios.ts ├── Schema │ ├── admin │ │ └── schema.ts │ └── auth │ │ └── auth.ts ├── reportWebVitals.ts ├── Redux │ ├── slice │ │ ├── chatUserId.ts │ │ ├── fillterSlice.ts │ │ ├── actvitiesSlice.ts │ │ ├── bookingDetailsSlice.ts │ │ ├── packageSlice.ts │ │ ├── destinIdSlice.ts │ │ ├── dateSlice.ts │ │ ├── passengerSlice.ts │ │ ├── authSlice.ts │ │ ├── bookingIvoice.ts │ │ ├── destinationSlice.ts │ │ └── extraService.ts │ └── store.ts ├── Context │ └── contextApi.tsx ├── App.tsx ├── utils │ └── ErrorBoundary.tsx ├── ProtectorRouter │ ├── AdminRouter.tsx │ └── UserRouter.tsx ├── index.tsx └── Router │ ├── AdminRouter.tsx │ └── UserRouter.tsx ├── public └── robots.txt ├── .gitignore ├── tsconfig.json ├── README.md ├── tailwind.config.js └── package.json /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/sokect.ts: -------------------------------------------------------------------------------- 1 | export const SOCKET_URL = process.env.REACT_APP_BASEURL as string -------------------------------------------------------------------------------- /src/Components/Checkout/input.css: -------------------------------------------------------------------------------- 1 | input::placeholder { 2 | font: 15px/3 sans-serif; 3 | } -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /src/Assets/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/bg.jpg -------------------------------------------------------------------------------- /src/Assets/k3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/k3.jpg -------------------------------------------------------------------------------- /src/Assets/k4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/k4.jpg -------------------------------------------------------------------------------- /src/Assets/k6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/k6.jpg -------------------------------------------------------------------------------- /src/Assets/k7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/k7.jpg -------------------------------------------------------------------------------- /src/Assets/k8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/k8.jpg -------------------------------------------------------------------------------- /src/Assets/mo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/mo.jpg -------------------------------------------------------------------------------- /src/Assets/p.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/p.jfif -------------------------------------------------------------------------------- /src/Assets/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/p2.jpg -------------------------------------------------------------------------------- /src/Assets/s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/s.jpg -------------------------------------------------------------------------------- /src/Assets/s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/s1.jpg -------------------------------------------------------------------------------- /src/Interface/activity.interface.ts: -------------------------------------------------------------------------------- 1 | export interface activityInterface{ 2 | Activity : string 3 | } -------------------------------------------------------------------------------- /src/Assets/401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/401.png -------------------------------------------------------------------------------- /src/Assets/aro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/aro.png -------------------------------------------------------------------------------- /src/Assets/bg.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/bg.jfif -------------------------------------------------------------------------------- /src/Assets/bg3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/bg3.webp -------------------------------------------------------------------------------- /src/Assets/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/bot.png -------------------------------------------------------------------------------- /src/Assets/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/boy.png -------------------------------------------------------------------------------- /src/Assets/cash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/cash.png -------------------------------------------------------------------------------- /src/Assets/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/chat.png -------------------------------------------------------------------------------- /src/Assets/city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/city.jpg -------------------------------------------------------------------------------- /src/Assets/des3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/des3.jpg -------------------------------------------------------------------------------- /src/Assets/img.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/img.webp -------------------------------------------------------------------------------- /src/Assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/logo.png -------------------------------------------------------------------------------- /src/Assets/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/map.png -------------------------------------------------------------------------------- /src/Assets/map_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/map_.jpg -------------------------------------------------------------------------------- /src/Assets/otp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/otp.png -------------------------------------------------------------------------------- /src/Assets/sea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/sea.jpg -------------------------------------------------------------------------------- /src/Assets/taj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/taj.jpg -------------------------------------------------------------------------------- /src/Assets/to.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/to.jfif -------------------------------------------------------------------------------- /src/Assets/upi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/upi.png -------------------------------------------------------------------------------- /src/Assets/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/visa.png -------------------------------------------------------------------------------- /src/Assets/Jaipur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/Jaipur.jpg -------------------------------------------------------------------------------- /src/Assets/Paris-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/Paris-1.png -------------------------------------------------------------------------------- /src/Assets/aboutbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/aboutbg.jpg -------------------------------------------------------------------------------- /src/Assets/ballon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/ballon.jpg -------------------------------------------------------------------------------- /src/Assets/cate.3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/cate.3.webp -------------------------------------------------------------------------------- /src/Assets/cate1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/cate1.jpg -------------------------------------------------------------------------------- /src/Assets/cate2.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/cate2.jfif -------------------------------------------------------------------------------- /src/Assets/cate4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/cate4.jpg -------------------------------------------------------------------------------- /src/Assets/cate5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/cate5.jpg -------------------------------------------------------------------------------- /src/Assets/cate6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/cate6.jpg -------------------------------------------------------------------------------- /src/Assets/chat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/chat1.png -------------------------------------------------------------------------------- /src/Assets/des1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/des1.webp -------------------------------------------------------------------------------- /src/Assets/des2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/des2.webp -------------------------------------------------------------------------------- /src/Assets/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/google.png -------------------------------------------------------------------------------- /src/Assets/guests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/guests.png -------------------------------------------------------------------------------- /src/Assets/images.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/images.jfif -------------------------------------------------------------------------------- /src/Assets/kerala.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/kerala.jfif -------------------------------------------------------------------------------- /src/Assets/kerala1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/kerala1.jpg -------------------------------------------------------------------------------- /src/Assets/landing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/landing.jpg -------------------------------------------------------------------------------- /src/Assets/locte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/locte.png -------------------------------------------------------------------------------- /src/Assets/loginbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/loginbg.png -------------------------------------------------------------------------------- /src/Assets/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/logo1.png -------------------------------------------------------------------------------- /src/Assets/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/logo2.png -------------------------------------------------------------------------------- /src/Assets/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/logo3.png -------------------------------------------------------------------------------- /src/Assets/logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/logo4.png -------------------------------------------------------------------------------- /src/Assets/luxu1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/luxu1.jpg -------------------------------------------------------------------------------- /src/Assets/luxury.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/luxury.jpg -------------------------------------------------------------------------------- /src/Assets/mainbg.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/mainbg.jfif -------------------------------------------------------------------------------- /src/Assets/manali.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/manali.webp -------------------------------------------------------------------------------- /src/Assets/manali1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/manali1.jpg -------------------------------------------------------------------------------- /src/Assets/map2.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/map2.jfif -------------------------------------------------------------------------------- /src/Assets/mapIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/mapIcon.png -------------------------------------------------------------------------------- /src/Assets/sucss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/sucss.jpg -------------------------------------------------------------------------------- /src/Assets/travel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/travel.png -------------------------------------------------------------------------------- /src/Assets/yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/yellow.jpg -------------------------------------------------------------------------------- /src/Components/Landing_page/Category/cate.css: -------------------------------------------------------------------------------- 1 | 2 | .categoryMain::-webkit-scrollbar{ 3 | display: none; 4 | } -------------------------------------------------------------------------------- /src/Assets/aboutbg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/aboutbg2.jpg -------------------------------------------------------------------------------- /src/Assets/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/calendar.png -------------------------------------------------------------------------------- /src/Assets/climbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/climbing.png -------------------------------------------------------------------------------- /src/Assets/contact.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/contact.webp -------------------------------------------------------------------------------- /src/Assets/download.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/download.jfif -------------------------------------------------------------------------------- /src/Assets/honnymoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/honnymoon.jpg -------------------------------------------------------------------------------- /src/Assets/package.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/package.webp -------------------------------------------------------------------------------- /src/Assets/package1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/package1.jpg -------------------------------------------------------------------------------- /src/Assets/service1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/service1.png -------------------------------------------------------------------------------- /src/Assets/service2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/service2.png -------------------------------------------------------------------------------- /src/Assets/service3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/service3.png -------------------------------------------------------------------------------- /src/Assets/service4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/service4.png -------------------------------------------------------------------------------- /src/Assets/service5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/service5.png -------------------------------------------------------------------------------- /src/Assets/service6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/service6.png -------------------------------------------------------------------------------- /src/Assets/servicebg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/servicebg.jpg -------------------------------------------------------------------------------- /src/Assets/adminlogin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/adminlogin.jpg -------------------------------------------------------------------------------- /src/Assets/destination.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/destination.webp -------------------------------------------------------------------------------- /src/Assets/servicebg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/servicebg2.jpg -------------------------------------------------------------------------------- /src/Assets/abouticon1 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/abouticon1 (1).png -------------------------------------------------------------------------------- /src/Assets/abouticon2 (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/abouticon2 (3).png -------------------------------------------------------------------------------- /src/Assets/abouticon3 (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/abouticon3 (2).png -------------------------------------------------------------------------------- /src/Assets/download (1).jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/download (1).jfif -------------------------------------------------------------------------------- /src/Assets/download (2).jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/download (2).jfif -------------------------------------------------------------------------------- /src/Assets/download (5).jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/download (5).jfif -------------------------------------------------------------------------------- /src/Components/Profile/Componet/Package.css: -------------------------------------------------------------------------------- 1 | .banner{ 2 | background-image:url('../../../Assets/destination.webp'); 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/Interface/category.interface.ts: -------------------------------------------------------------------------------- 1 | export interface categoryInterface{ 2 | packageCategory? : string, 3 | file:null 4 | 5 | } -------------------------------------------------------------------------------- /src/Assets/world-wide-shipping-wall-mural-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/majidkambarath/TravDestBook_React/HEAD/src/Assets/world-wide-shipping-wall-mural-3.jpg -------------------------------------------------------------------------------- /src/Interface/headerFillter.ts: -------------------------------------------------------------------------------- 1 | export interface HeaderFillterInterface{ 2 | descrption:string, 3 | activity:string, 4 | priceCategory:string, 5 | guests:string, 6 | } -------------------------------------------------------------------------------- /src/Interface/auth_interface.ts: -------------------------------------------------------------------------------- 1 | export interface authInterface { 2 | name:string, 3 | phone:number, 4 | email:string, 5 | password:string, 6 | cpassword:string 7 | } -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500&display=swap'); 2 | @tailwind base; 3 | @tailwind components; 4 | @tailwind utilities; 5 | -------------------------------------------------------------------------------- /src/Pages/User/ChatPage.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import Chat from '../../Components/Chat/Chat' 3 | export default function ChatPage() { 4 | return ( 5 |
11 |