stay_commerce-frontend 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +8 -0
- data/app/assets/builds/404error-RVKQJ4S4.digested.jpg +0 -0
- data/app/assets/builds/Facebook-5HJUILVR.digested.svg +3 -0
- data/app/assets/builds/Google-CZ3UPVSC.digested.svg +6 -0
- data/app/assets/builds/application.js +95 -0
- data/app/assets/builds/application.js.map +7 -0
- data/app/assets/builds/beach-KAZW5GM3.digested.jpg +0 -0
- data/app/assets/builds/beach2-3ARC34NS.digested.jpg +0 -0
- data/app/assets/builds/beach3-PSTOH5FV.digested.jpg +0 -0
- data/app/assets/builds/beach4-PWNRPD3S.digested.jpg +0 -0
- data/app/assets/builds/beach5-SBOKKRHF.digested.jpg +0 -0
- data/app/assets/builds/beach6-SXZ5Y5AI.digested.jpg +0 -0
- data/app/assets/builds/beach7-FNBMFVKK.digested.jpg +0 -0
- data/app/assets/builds/beach8-TD7LTRQM.digested.jpg +0 -0
- data/app/assets/builds/bg-image-H7UGUMV2.digested.jpg +0 -0
- data/app/assets/builds/bgimage-DU3PCXKN.digested.jpg +0 -0
- data/app/assets/builds/bundle.css +30914 -0
- data/app/assets/builds/bundle.css.map +7 -0
- data/app/assets/builds/bundle.js +74569 -0
- data/app/assets/builds/bundle.js.map +7 -0
- data/app/assets/builds/hotel1-HGBXPKJK.digested.jpg +0 -0
- data/app/assets/builds/logo_updated-KQWAXLYL.digested.png +0 -0
- data/app/assets/builds/styles.css +6422 -0
- data/app/assets/builds/styles.css.map +7 -0
- data/app/assets/config/manifest.js +2 -0
- data/app/assets/images/favicon.ico +0 -0
- data/app/assets/images/stay_commerce/frontend/beach-666122_1280 (1).jpg +0 -0
- data/app/assets/images/stay_commerce/frontend/beach-666122_1280.jpg +0 -0
- data/app/assets/stylesheets/stay_commerce/frontend/application.css +15 -0
- data/app/controllers/stay_commerce/frontend/application_controller.rb +8 -0
- data/app/controllers/stay_commerce/frontend/welcome_controller.rb +6 -0
- data/app/helpers/stay_commerce/frontend/application_helper.rb +6 -0
- data/app/javascript/Images/404error.jpg +0 -0
- data/app/javascript/Images/Facebook.svg +3 -0
- data/app/javascript/Images/Google.svg +6 -0
- data/app/javascript/Images/beach-2245867_1280.jpg +0 -0
- data/app/javascript/Images/beach.jpg +0 -0
- data/app/javascript/Images/beach2.jpg +0 -0
- data/app/javascript/Images/beach3.jpg +0 -0
- data/app/javascript/Images/beach4.jpg +0 -0
- data/app/javascript/Images/beach5.jpg +0 -0
- data/app/javascript/Images/beach6.jpg +0 -0
- data/app/javascript/Images/beach7.jpg +0 -0
- data/app/javascript/Images/beach8.jpg +0 -0
- data/app/javascript/Images/bg-image.jpg +0 -0
- data/app/javascript/Images/bgimage.jpg +0 -0
- data/app/javascript/Images/blog-1.jpg +0 -0
- data/app/javascript/Images/gallery.png +0 -0
- data/app/javascript/Images/home 5.jpg +0 -0
- data/app/javascript/Images/home1.jpg +0 -0
- data/app/javascript/Images/home2.jpg +0 -0
- data/app/javascript/Images/home3.jpg +0 -0
- data/app/javascript/Images/home6.jpg +0 -0
- data/app/javascript/Images/hotel1.jpg +0 -0
- data/app/javascript/Images/room1.jpg +0 -0
- data/app/javascript/Images/room2.jpg +0 -0
- data/app/javascript/Images/room3.jpg +0 -0
- data/app/javascript/Images/room4.jpg +0 -0
- data/app/javascript/Images/wine-4520213_1280.jpg +0 -0
- data/app/javascript/application.js +1 -0
- data/app/javascript/react/Api/apiConstants.js +47 -0
- data/app/javascript/react/assets/beach-2245867_1280.jpg +0 -0
- data/app/javascript/react/assets/logo.png +0 -0
- data/app/javascript/react/assets/logo_updated.png +0 -0
- data/app/javascript/react/components/AboutUsPage/AboutPage.jsx +41 -0
- data/app/javascript/react/components/AboutusFront/About.jsx +37 -0
- data/app/javascript/react/components/Accommodation/Accommodation.jsx +32 -0
- data/app/javascript/react/components/Accommodation/NormalListing.jsx +50 -0
- data/app/javascript/react/components/Accommodation/SpecialListing.jsx +51 -0
- data/app/javascript/react/components/Accountpage/AccountInfo.jsx +217 -0
- data/app/javascript/react/components/Accountpage/AccountPage.jsx +27 -0
- data/app/javascript/react/components/Accountpage/CommonPage.jsx +24 -0
- data/app/javascript/react/components/AddNewProperty/CommonLayout.jsx +68 -0
- data/app/javascript/react/components/AddNewProperty/Description.jsx +229 -0
- data/app/javascript/react/components/AddNewProperty/Details.jsx +234 -0
- data/app/javascript/react/components/AddNewProperty/Images.jsx +196 -0
- data/app/javascript/react/components/AddNewProperty/Location.jsx +239 -0
- data/app/javascript/react/components/AddNewProperty/Room.jsx +1132 -0
- data/app/javascript/react/components/AvatarDropdown/AvatarDropDown.jsx +142 -0
- data/app/javascript/react/components/BlogDesign/BlogsLatest.jsx +67 -0
- data/app/javascript/react/components/ContactUs/Contact.jsx +89 -0
- data/app/javascript/react/components/FacilitiesSection/Facilities.jsx +66 -0
- data/app/javascript/react/components/FixedNavbar/FixedNav.jsx +88 -0
- data/app/javascript/react/components/ForgetPassword/ForgetPassword.jsx +103 -0
- data/app/javascript/react/components/Gallery/Gallery.jsx +164 -0
- data/app/javascript/react/components/GalleryModalLight/GalleryModalLight.jsx +35 -0
- data/app/javascript/react/components/GallerySlider/GallerySlider.jsx +58 -0
- data/app/javascript/react/components/Headers/PropertyCard.jsx +46 -0
- data/app/javascript/react/components/HeroSectionDesign/BookingForm.jsx +178 -0
- data/app/javascript/react/components/HeroSectionDesign/HeroSection.jsx +29 -0
- data/app/javascript/react/components/HeroSectionDesign/MyPropertiesListing.jsx +104 -0
- data/app/javascript/react/components/HeroSectionDesign/PropertiesPage.jsx +122 -0
- data/app/javascript/react/components/HotelListing/Listing.jsx +48 -0
- data/app/javascript/react/components/Layout/Layout.js +18 -0
- data/app/javascript/react/components/Listing-stay-Detail/AmenitiesFeatures.jsx +58 -0
- data/app/javascript/react/components/Listing-stay-Detail/AmenitiesModal.jsx +250 -0
- data/app/javascript/react/components/Listing-stay-Detail/ApartmentCard.jsx +120 -0
- data/app/javascript/react/components/Listing-stay-Detail/BookingModal.jsx +398 -0
- data/app/javascript/react/components/Listing-stay-Detail/CheckoutForm.jsx +296 -0
- data/app/javascript/react/components/Listing-stay-Detail/ListingStayDetailPage.jsx +512 -0
- data/app/javascript/react/components/Listing-stay-Detail/PropertyDescription.jsx +76 -0
- data/app/javascript/react/components/Listing-stay-Detail/PropertyDetailsCard.jsx +62 -0
- data/app/javascript/react/components/Listing-stay-Detail/Reviews.jsx +132 -0
- data/app/javascript/react/components/Listing-stay-Detail/RoomDescriptionModal.jsx +105 -0
- data/app/javascript/react/components/Listing-stay-Detail/Rules.jsx +23 -0
- data/app/javascript/react/components/ListingImageGallery/ListingImageGallery.jsx +30 -0
- data/app/javascript/react/components/LoginPage/LoginPage.jsx +115 -0
- data/app/javascript/react/components/MobileNav/MobileMenu.jsx +47 -0
- data/app/javascript/react/components/Navbar/Navbar.jsx +25 -0
- data/app/javascript/react/components/Page404/Page404.jsx +30 -0
- data/app/javascript/react/components/PropertyListing/MyProperties.jsx +146 -0
- data/app/javascript/react/components/PropertyListing/StayBooking/BookingDetails.jsx +178 -0
- data/app/javascript/react/components/PropertyListing/StayBooking/MyBooking.jsx +83 -0
- data/app/javascript/react/components/ResetPassword/ResetPassword.jsx +117 -0
- data/app/javascript/react/components/SignupPage/SignupPage.jsx +185 -0
- data/app/javascript/react/components/SmallNavbar/SmallNav.jsx +51 -0
- data/app/javascript/react/components/SocialAuth/SocialAuth.jsx +21 -0
- data/app/javascript/react/components/StayCard/StayCard.jsx +69 -0
- data/app/javascript/react/components/StayCard/StayCard2.jsx +45 -0
- data/app/javascript/react/components/StayCard/StayCard3.jsx +45 -0
- data/app/javascript/react/components/TestimonialSection/Testimonial.jsx +113 -0
- data/app/javascript/react/components/Unauthorized/Unauthorized.jsx +12 -0
- data/app/javascript/react/data/jsons/__countryListing.json +201 -0
- data/app/javascript/react/packs/App.js +26 -0
- data/app/javascript/react/packs/index.jsx +38 -0
- data/app/javascript/react/packs/routes/ParentRoute.jsx +14 -0
- data/app/javascript/react/packs/routes/Route.jsx +163 -0
- data/app/javascript/react/pages/AccommodationList.jsx +21 -0
- data/app/javascript/react/pages/Home.jsx +32 -0
- data/app/javascript/react/redux/slices/AuthSlice/AuthSlice.jsx +100 -0
- data/app/javascript/react/redux/slices/PropertySlice/PropertySlice.jsx +722 -0
- data/app/javascript/react/redux/slices/PropertySlice/Searchslice.jsx +36 -0
- data/app/javascript/react/redux/slices/UserSlice/UserSlice.jsx +215 -0
- data/app/javascript/react/redux/store.js +35 -0
- data/app/javascript/react/shared/Avatar/Avatar.jsx +32 -0
- data/app/javascript/react/shared/Badge/Badge.jsx +33 -0
- data/app/javascript/react/shared/Button/Button.jsx +67 -0
- data/app/javascript/react/shared/Button/ButtonPrimary.jsx +11 -0
- data/app/javascript/react/shared/Button/ButtonSelect.jsx +9 -0
- data/app/javascript/react/shared/Checkbox/Checkbox.jsx +38 -0
- data/app/javascript/react/shared/CurrencySymbol.jsx +6 -0
- data/app/javascript/react/shared/DateField/CustomDatePicker.jsx +69 -0
- data/app/javascript/react/shared/FooterSection/Footer.jsx +75 -0
- data/app/javascript/react/shared/FormField/FormField.jsx +75 -0
- data/app/javascript/react/shared/FormItem/FormItem.jsx +20 -0
- data/app/javascript/react/shared/Input/Input.jsx +27 -0
- data/app/javascript/react/shared/Label/Label.jsx +12 -0
- data/app/javascript/react/shared/Modal.jsx +20 -0
- data/app/javascript/react/shared/NcImage/NcImage.jsx +101 -0
- data/app/javascript/react/shared/NcImage/PlaceIcon.jsx +31 -0
- data/app/javascript/react/shared/NcImage/placecImageIcon.svg +6 -0
- data/app/javascript/react/shared/Select/Select.jsx +20 -0
- data/app/javascript/react/styles/404error.scss +58 -0
- data/app/javascript/react/styles/ApartmentCard.scss +126 -0
- data/app/javascript/react/styles/BookingDetails.scss +457 -0
- data/app/javascript/react/styles/Modal.scss +36 -0
- data/app/javascript/react/styles/PropertiesPage.scss +219 -0
- data/app/javascript/react/styles/RenderSection.scss +480 -0
- data/app/javascript/react/styles/about.scss +97 -0
- data/app/javascript/react/styles/accountinfo.scss +67 -0
- data/app/javascript/react/styles/accountpage.scss +36 -0
- data/app/javascript/react/styles/amenitiesfeatures.scss +223 -0
- data/app/javascript/react/styles/application.scss +87 -0
- data/app/javascript/react/styles/avatar.scss +39 -0
- data/app/javascript/react/styles/avatardropdown.scss +57 -0
- data/app/javascript/react/styles/badge.scss +90 -0
- data/app/javascript/react/styles/blog.scss +100 -0
- data/app/javascript/react/styles/bookingform.scss +124 -0
- data/app/javascript/react/styles/button.scss +44 -0
- data/app/javascript/react/styles/buttonprimary.scss +32 -0
- data/app/javascript/react/styles/checkbox.scss +37 -0
- data/app/javascript/react/styles/commonlayout.scss +83 -0
- data/app/javascript/react/styles/commonpage.scss +51 -0
- data/app/javascript/react/styles/contact.scss +173 -0
- data/app/javascript/react/styles/customdatepicker.scss +120 -0
- data/app/javascript/react/styles/description.scss +21 -0
- data/app/javascript/react/styles/details.scss +88 -0
- data/app/javascript/react/styles/facilities.scss +131 -0
- data/app/javascript/react/styles/fixednavbar.scss +137 -0
- data/app/javascript/react/styles/fonts.scss +22 -0
- data/app/javascript/react/styles/footer.scss +300 -0
- data/app/javascript/react/styles/forgetpassword.scss +68 -0
- data/app/javascript/react/styles/formfield.scss +39 -0
- data/app/javascript/react/styles/formitem.scss +20 -0
- data/app/javascript/react/styles/gallery.scss +142 -0
- data/app/javascript/react/styles/gallerymodallight.scss +137 -0
- data/app/javascript/react/styles/galleryslider.scss +114 -0
- data/app/javascript/react/styles/header.scss +49 -0
- data/app/javascript/react/styles/herosection.scss +61 -0
- data/app/javascript/react/styles/images.scss +112 -0
- data/app/javascript/react/styles/input.scss +58 -0
- data/app/javascript/react/styles/label.scss +11 -0
- data/app/javascript/react/styles/listing.scss +94 -0
- data/app/javascript/react/styles/listingimagegallery.scss +57 -0
- data/app/javascript/react/styles/listingstaydetailpage.scss +887 -0
- data/app/javascript/react/styles/location.scss +66 -0
- data/app/javascript/react/styles/loginpage.scss +150 -0
- data/app/javascript/react/styles/mobilemenu.scss +53 -0
- data/app/javascript/react/styles/mybooking.scss +104 -0
- data/app/javascript/react/styles/myproperty.scss +51 -0
- data/app/javascript/react/styles/ncimage.scss +24 -0
- data/app/javascript/react/styles/normallisting.scss +95 -0
- data/app/javascript/react/styles/property-description.scss +75 -0
- data/app/javascript/react/styles/propertycard.scss +48 -0
- data/app/javascript/react/styles/propertydetailscard.scss +302 -0
- data/app/javascript/react/styles/resetpassword.scss +79 -0
- data/app/javascript/react/styles/reviews.scss +185 -0
- data/app/javascript/react/styles/room.scss +275 -0
- data/app/javascript/react/styles/rooms.scss +0 -0
- data/app/javascript/react/styles/select.scss +44 -0
- data/app/javascript/react/styles/signuppage.scss +132 -0
- data/app/javascript/react/styles/smallnav.scss +94 -0
- data/app/javascript/react/styles/socialauth.scss +62 -0
- data/app/javascript/react/styles/speciallisting.scss +94 -0
- data/app/javascript/react/styles/staycard.scss +77 -0
- data/app/javascript/react/styles/staycard2.scss +115 -0
- data/app/javascript/react/styles/testimonial.scss +216 -0
- data/app/javascript/react/styles/unauthorized.scss +22 -0
- data/app/javascript/react/styles/variables.scss +3 -0
- data/app/javascript/react/styles/wrapper.scss +4 -0
- data/app/javascript/react/utils/formSchema.js +120 -0
- data/app/javascript/react/utils/helpers/APIHelper.jsx +55 -0
- data/app/javascript/react/utils/helpers/ErrorHandler.js +21 -0
- data/app/javascript/react/utils/helpers/InfoHandler.js +15 -0
- data/app/javascript/react/utils/helpers/SuccessHandler.js +12 -0
- data/app/javascript/react/utils/helpers/isInViewPortIntersectionObserver.jsx +39 -0
- data/app/jobs/stay_commerce/frontend/application_job.rb +6 -0
- data/app/mailers/stay_commerce/frontend/application_mailer.rb +8 -0
- data/app/models/stay_commerce/frontend/application_record.rb +7 -0
- data/app/views/layouts/stay_commerce/frontend/application.html.erb +61 -0
- data/app/views/stay_commerce/frontend/welcome/index.html.erb +2 -0
- data/config/initializers/cors.rb +6 -0
- data/config/initializers/devise.rb +359 -0
- data/config/routes.rb +11 -0
- data/lib/stay_commerce/frontend/engine.rb +14 -0
- data/lib/stay_commerce/frontend/version.rb +5 -0
- data/lib/stay_commerce/frontend.rb +8 -0
- data/lib/tasks/stay_commerce/frontend_tasks.rake +4 -0
- metadata +370 -0
@@ -0,0 +1,66 @@
|
|
1
|
+
.form-container {
|
2
|
+
display: flex;
|
3
|
+
flex-direction: column;
|
4
|
+
gap: 2rem;
|
5
|
+
}
|
6
|
+
|
7
|
+
.autocomplete-wrapper {
|
8
|
+
.autocomplete {
|
9
|
+
.css-13cymwt-control {
|
10
|
+
border-radius: 0.5rem;
|
11
|
+
border: 1px solid #d1d5db;
|
12
|
+
min-height: 42px;
|
13
|
+
padding: 2px 0.5rem;
|
14
|
+
font-size: 0.95rem;
|
15
|
+
}
|
16
|
+
|
17
|
+
.css-1dimb5e-singleValue {
|
18
|
+
font-size: 0.95rem;
|
19
|
+
}
|
20
|
+
}
|
21
|
+
|
22
|
+
.error {
|
23
|
+
margin-top: 0.25rem;
|
24
|
+
color: #dc2626;
|
25
|
+
font-size: 0.875rem;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
.grid-3 {
|
30
|
+
display: grid;
|
31
|
+
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
32
|
+
gap: 1.5rem;
|
33
|
+
}
|
34
|
+
|
35
|
+
.icon {
|
36
|
+
height: 1.25rem;
|
37
|
+
width: 1.25rem;
|
38
|
+
}
|
39
|
+
|
40
|
+
.error {
|
41
|
+
margin-top: 0.25rem;
|
42
|
+
color: #dc2626;
|
43
|
+
font-size: 0.875rem;
|
44
|
+
}
|
45
|
+
|
46
|
+
.action-buttons {
|
47
|
+
display: flex;
|
48
|
+
justify-content: space-between;
|
49
|
+
align-items: center;
|
50
|
+
gap: 1.5rem;
|
51
|
+
margin-top: 2rem;
|
52
|
+
}
|
53
|
+
|
54
|
+
.divider {
|
55
|
+
height: 1px;
|
56
|
+
background-color: #e5e7eb;
|
57
|
+
margin: 1.5rem 0;
|
58
|
+
}
|
59
|
+
|
60
|
+
.form-label {
|
61
|
+
display: block;
|
62
|
+
font-size: 0.875rem;
|
63
|
+
font-weight: 500;
|
64
|
+
color: #374151;
|
65
|
+
margin-bottom: 0.25rem;
|
66
|
+
}
|
@@ -0,0 +1,150 @@
|
|
1
|
+
.login-container {
|
2
|
+
display: flex;
|
3
|
+
justify-content: center;
|
4
|
+
align-items: center;
|
5
|
+
background-color: white;
|
6
|
+
position: relative;
|
7
|
+
}
|
8
|
+
|
9
|
+
/* Logo Styling */
|
10
|
+
.logos {
|
11
|
+
position: absolute;
|
12
|
+
top: 30px;
|
13
|
+
left: 23px;
|
14
|
+
font-size: 1.5rem;
|
15
|
+
font-weight: bold;
|
16
|
+
color: #222;
|
17
|
+
}
|
18
|
+
|
19
|
+
.login-card {
|
20
|
+
background: white;
|
21
|
+
padding: 2rem;
|
22
|
+
border-radius: 12px;
|
23
|
+
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
|
24
|
+
text-align: center;
|
25
|
+
max-width: 430px;
|
26
|
+
width: 90%;
|
27
|
+
margin-top: 16rem;
|
28
|
+
margin-bottom: 7rem;
|
29
|
+
}
|
30
|
+
|
31
|
+
.main-title {
|
32
|
+
text-align: center;
|
33
|
+
margin-bottom: 1rem;
|
34
|
+
position: absolute;
|
35
|
+
top: 125px;
|
36
|
+
left: 50%;
|
37
|
+
transform: translateX(-50%);
|
38
|
+
}
|
39
|
+
|
40
|
+
.main-title h2 {
|
41
|
+
color: #081976;
|
42
|
+
font-size: 1.5rem;
|
43
|
+
margin-bottom: 5px;
|
44
|
+
}
|
45
|
+
|
46
|
+
.main-title h3 {
|
47
|
+
font-size: 1.2rem;
|
48
|
+
color: gray;
|
49
|
+
}
|
50
|
+
|
51
|
+
.log-title {
|
52
|
+
margin-bottom: 2rem;
|
53
|
+
}
|
54
|
+
|
55
|
+
.log-title h2 {
|
56
|
+
font-size: 3rem;
|
57
|
+
margin: 0;
|
58
|
+
}
|
59
|
+
|
60
|
+
.login-form {
|
61
|
+
display: flex;
|
62
|
+
flex-direction: column;
|
63
|
+
gap: 1.3rem;
|
64
|
+
}
|
65
|
+
|
66
|
+
.input-group {
|
67
|
+
display: flex;
|
68
|
+
flex-direction: column;
|
69
|
+
text-align: left;
|
70
|
+
width: 100%;
|
71
|
+
}
|
72
|
+
|
73
|
+
label {
|
74
|
+
font-size: 0.9rem;
|
75
|
+
font-weight: 500;
|
76
|
+
margin-bottom: 5px;
|
77
|
+
color: #333;
|
78
|
+
}
|
79
|
+
|
80
|
+
.login-button {
|
81
|
+
background: #081976;
|
82
|
+
color: white;
|
83
|
+
border: none;
|
84
|
+
padding: 15px;
|
85
|
+
font-size: 1rem;
|
86
|
+
border-radius: 8px;
|
87
|
+
cursor: pointer;
|
88
|
+
font-weight: bold;
|
89
|
+
margin-top: 1rem;
|
90
|
+
}
|
91
|
+
|
92
|
+
.signup-text {
|
93
|
+
display: flex;
|
94
|
+
flex-direction: column;
|
95
|
+
margin-top: 1rem;
|
96
|
+
margin-bottom: 0.5rem;
|
97
|
+
font-size: 0.9rem;
|
98
|
+
|
99
|
+
a {
|
100
|
+
color: #081976;
|
101
|
+
font-size: 0.9rem;
|
102
|
+
}
|
103
|
+
}
|
104
|
+
@media (max-width: 768px) {
|
105
|
+
.login-card {
|
106
|
+
max-width: 350px;
|
107
|
+
padding: 1.5rem;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
|
111
|
+
@media (max-width: 480px) {
|
112
|
+
.login-card {
|
113
|
+
max-width: 80%;
|
114
|
+
padding: 1.2rem;
|
115
|
+
margin-top: 8rem;
|
116
|
+
}
|
117
|
+
.main-title {
|
118
|
+
top: 100px;
|
119
|
+
}
|
120
|
+
.main-title h2 {
|
121
|
+
font-size: 1.3rem;
|
122
|
+
}
|
123
|
+
.main-title h3 {
|
124
|
+
font-size: 1rem;
|
125
|
+
}
|
126
|
+
.log-title h2 {
|
127
|
+
font-size: 2.5rem;
|
128
|
+
}
|
129
|
+
.login-button {
|
130
|
+
padding: 12px;
|
131
|
+
font-size: 0.9rem;
|
132
|
+
}
|
133
|
+
}
|
134
|
+
|
135
|
+
.forgot-password-link {
|
136
|
+
display: block;
|
137
|
+
text-align: center;
|
138
|
+
color: #374151;
|
139
|
+
|
140
|
+
&__text {
|
141
|
+
font-size: 14px;
|
142
|
+
text-decoration: underline;
|
143
|
+
color: inherit;
|
144
|
+
transition: color 0.3s;
|
145
|
+
|
146
|
+
&:hover {
|
147
|
+
color: #081976;
|
148
|
+
}
|
149
|
+
}
|
150
|
+
}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
.mobileMenu .hamburger {
|
2
|
+
display: none;
|
3
|
+
cursor: pointer;
|
4
|
+
margin-right: 23px;
|
5
|
+
margin-left:10px;
|
6
|
+
color:#db7c0b;
|
7
|
+
}
|
8
|
+
|
9
|
+
.mobileMenu .nav{
|
10
|
+
display: none;
|
11
|
+
position: absolute;
|
12
|
+
top: 79px;
|
13
|
+
right: 0;
|
14
|
+
width: 100%;
|
15
|
+
background-color: white;
|
16
|
+
flex-direction: column;
|
17
|
+
gap: 0.4rem;
|
18
|
+
padding: 1rem 0;
|
19
|
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
20
|
+
}
|
21
|
+
|
22
|
+
.mobileMenu .nav.open {
|
23
|
+
display: flex;
|
24
|
+
margin-top: 0;
|
25
|
+
}
|
26
|
+
|
27
|
+
.mobileMenu .nav .Link {
|
28
|
+
text-align: center;
|
29
|
+
padding: 0.5rem 0;
|
30
|
+
font-size: 0.8rem;
|
31
|
+
font-weight:500;
|
32
|
+
text-decoration: none;
|
33
|
+
color: #4b5563;
|
34
|
+
|
35
|
+
&:hover,
|
36
|
+
&.active {
|
37
|
+
color: #00bfff;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
/* mobileMenu Responsive */
|
42
|
+
@media (max-width: 990px) {
|
43
|
+
.mobileMenu .hamburger {
|
44
|
+
display: block;
|
45
|
+
margin-top:11px;
|
46
|
+
}
|
47
|
+
|
48
|
+
.desktopMenu , .smallMenu{
|
49
|
+
display: none;
|
50
|
+
}
|
51
|
+
|
52
|
+
}
|
53
|
+
|
@@ -0,0 +1,104 @@
|
|
1
|
+
.my-booking-container {
|
2
|
+
display: flex;
|
3
|
+
justify-content: center;
|
4
|
+
padding: 80px 20px;
|
5
|
+
|
6
|
+
.my-booking-content {
|
7
|
+
width: 100%;
|
8
|
+
max-width: 1200px;
|
9
|
+
text-align: center;
|
10
|
+
|
11
|
+
@media (max-width: 1024px) {
|
12
|
+
max-width: 750px;
|
13
|
+
}
|
14
|
+
.heading {
|
15
|
+
font-size: 32px;
|
16
|
+
font-weight: 700;
|
17
|
+
color: #333;
|
18
|
+
margin-bottom: 10px;
|
19
|
+
text-align: start;
|
20
|
+
margin-top: 30px;
|
21
|
+
}
|
22
|
+
|
23
|
+
.subheading {
|
24
|
+
font-size: 16px;
|
25
|
+
color: #666;
|
26
|
+
margin-bottom: 50px;
|
27
|
+
text-align: start;
|
28
|
+
}
|
29
|
+
|
30
|
+
.search-bar {
|
31
|
+
max-width: 486px;
|
32
|
+
display: flex;
|
33
|
+
justify-content: center;
|
34
|
+
align-items: center;
|
35
|
+
gap: 12px;
|
36
|
+
margin-bottom: 30px;
|
37
|
+
margin-left: 12px;
|
38
|
+
|
39
|
+
.search-input {
|
40
|
+
width: 350px;
|
41
|
+
padding: 12px 15px;
|
42
|
+
border: 2px solid #ccc;
|
43
|
+
border-radius: 8px;
|
44
|
+
font-size: 16px;
|
45
|
+
outline: none;
|
46
|
+
transition: 0.3s;
|
47
|
+
|
48
|
+
&:focus {
|
49
|
+
border-color: #f57c00;
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
.search-button {
|
54
|
+
background-color: #db7c0b;
|
55
|
+
color: white;
|
56
|
+
border: none;
|
57
|
+
padding: 12px 20px;
|
58
|
+
cursor: pointer;
|
59
|
+
border-radius: 8px;
|
60
|
+
font-size: 16px;
|
61
|
+
font-weight: 600;
|
62
|
+
transition: 0.3s;
|
63
|
+
|
64
|
+
// &:disabled {
|
65
|
+
// background-color: #ccc;
|
66
|
+
// cursor: not-allowed;
|
67
|
+
// }
|
68
|
+
|
69
|
+
&:hover:not(:disabled) {
|
70
|
+
background-color: #e06a00;
|
71
|
+
}
|
72
|
+
}
|
73
|
+
}
|
74
|
+
|
75
|
+
.stay-cards {
|
76
|
+
display: grid;
|
77
|
+
grid-template-columns: repeat(3, 1fr);
|
78
|
+
gap: 20px;
|
79
|
+
justify-content: center;
|
80
|
+
padding-top: 10px;
|
81
|
+
|
82
|
+
@media (max-width: 1024px) {
|
83
|
+
grid-template-columns: repeat(2, 1fr);
|
84
|
+
gap: 20px;
|
85
|
+
}
|
86
|
+
|
87
|
+
@media (max-width: 640px) {
|
88
|
+
grid-template-columns: repeat(1, 1fr);
|
89
|
+
}
|
90
|
+
}
|
91
|
+
}
|
92
|
+
}
|
93
|
+
.no-results {
|
94
|
+
font-size: 24px;
|
95
|
+
font-weight: 600;
|
96
|
+
text-align: center;
|
97
|
+
}
|
98
|
+
|
99
|
+
.loader {
|
100
|
+
text-align: center;
|
101
|
+
font-size: 18px;
|
102
|
+
padding: 30px 0;
|
103
|
+
color: #666;
|
104
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
.myListing-page {
|
2
|
+
position: relative;
|
3
|
+
overflow: hidden;
|
4
|
+
}
|
5
|
+
|
6
|
+
.myListing-header {
|
7
|
+
position: relative;
|
8
|
+
padding-top: 4rem;
|
9
|
+
}
|
10
|
+
|
11
|
+
.myListing-header-content {
|
12
|
+
max-width: 1200px;
|
13
|
+
margin: 0 auto;
|
14
|
+
padding: 2rem;
|
15
|
+
}
|
16
|
+
|
17
|
+
.myListing-heading {
|
18
|
+
text-align: start;
|
19
|
+
margin-bottom: 2rem;
|
20
|
+
}
|
21
|
+
|
22
|
+
.myListing-heading h1 {
|
23
|
+
font-size: 2.5rem;
|
24
|
+
font-weight: bold;
|
25
|
+
color: #333;
|
26
|
+
}
|
27
|
+
|
28
|
+
.myListing-search {
|
29
|
+
margin-bottom: 2rem;
|
30
|
+
}
|
31
|
+
|
32
|
+
.search-bar {
|
33
|
+
display: flex;
|
34
|
+
align-items: center;
|
35
|
+
}
|
36
|
+
|
37
|
+
.search-input {
|
38
|
+
padding: 1rem;
|
39
|
+
width: 100%;
|
40
|
+
max-width: 400px;
|
41
|
+
border-radius: 0.375rem;
|
42
|
+
border: 1px solid #ccc;
|
43
|
+
}
|
44
|
+
|
45
|
+
.search-button {
|
46
|
+
margin-left: 1rem;
|
47
|
+
padding: 1rem 2rem;
|
48
|
+
border-radius: 0.375rem;
|
49
|
+
font-weight: bold;
|
50
|
+
cursor: pointer;
|
51
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
.nc-image {
|
2
|
+
position: relative;
|
3
|
+
|
4
|
+
&__placeholder {
|
5
|
+
display: flex;
|
6
|
+
align-items: center;
|
7
|
+
justify-content: center;
|
8
|
+
background-color: #e5e7eb; // Tailwind's neutral-200
|
9
|
+
color: #f3f4f6; // Tailwind's neutral-100
|
10
|
+
height: 100%;
|
11
|
+
width: 100%;
|
12
|
+
|
13
|
+
.dark & {
|
14
|
+
background-color: #1f2937; // dark neutral-6000
|
15
|
+
color: #6b7280; // dark neutral-500
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
&__icon {
|
20
|
+
height: 50%;
|
21
|
+
max-width: 50%;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
@@ -0,0 +1,95 @@
|
|
1
|
+
.normal-listing {
|
2
|
+
text-align: center;
|
3
|
+
margin:90px 0px;
|
4
|
+
padding-bottom:30px;
|
5
|
+
|
6
|
+
h2 {
|
7
|
+
font-size: 2.5rem;
|
8
|
+
font-weight: bold;
|
9
|
+
margin: 70px 0 20px;
|
10
|
+
}
|
11
|
+
|
12
|
+
p {
|
13
|
+
color: #64748b;
|
14
|
+
margin-bottom: 80px;
|
15
|
+
}
|
16
|
+
|
17
|
+
.room-listings {
|
18
|
+
display: grid;
|
19
|
+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
20
|
+
gap: 20px;
|
21
|
+
max-width: 1200px;
|
22
|
+
margin: 0 auto;
|
23
|
+
|
24
|
+
.room-card {
|
25
|
+
background-color: white;
|
26
|
+
padding: 15px;
|
27
|
+
text-align: center;
|
28
|
+
position: relative;
|
29
|
+
height:39vh;
|
30
|
+
|
31
|
+
.room-image-wrapper {
|
32
|
+
position: relative;
|
33
|
+
border-radius: 8px;
|
34
|
+
overflow: hidden;
|
35
|
+
|
36
|
+
img {
|
37
|
+
width: 100%;
|
38
|
+
height: 270px;
|
39
|
+
object-fit: cover;
|
40
|
+
border-radius: 8px;
|
41
|
+
transition: all 0.5s ease-in-out;
|
42
|
+
|
43
|
+
&:hover {
|
44
|
+
transform: scale(1.15);
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
button {
|
49
|
+
position: absolute;
|
50
|
+
bottom: 20px;
|
51
|
+
left: 50%;
|
52
|
+
transform: translateX(-50%);
|
53
|
+
background-color: #ffd700;
|
54
|
+
color: white;
|
55
|
+
font-weight: bold;
|
56
|
+
padding: 10px 16px;
|
57
|
+
border-radius: 5px;
|
58
|
+
border: none;
|
59
|
+
cursor: pointer;
|
60
|
+
font-size: 14px;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
h3 {
|
65
|
+
font-size: 20px;
|
66
|
+
font-weight: bold;
|
67
|
+
margin: 12px 0;
|
68
|
+
}
|
69
|
+
|
70
|
+
p {
|
71
|
+
color: #00bfff;
|
72
|
+
font-size: 25px;
|
73
|
+
font-weight: 600;
|
74
|
+
|
75
|
+
span {
|
76
|
+
font-size: 16px;
|
77
|
+
color: #87ceeb;
|
78
|
+
margin-left: 5px;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
}
|
82
|
+
}
|
83
|
+
}
|
84
|
+
|
85
|
+
@media (max-width: 382px) {
|
86
|
+
.normal-listing {
|
87
|
+
|
88
|
+
h2 {
|
89
|
+
font-size: 30px;
|
90
|
+
font-weight: bold;
|
91
|
+
margin: 70px 0 20px;
|
92
|
+
}
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
@@ -0,0 +1,75 @@
|
|
1
|
+
.description__wrap {
|
2
|
+
padding: 1.5rem;
|
3
|
+
background-color: #fff;
|
4
|
+
border-radius: 0.75rem;
|
5
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
6
|
+
margin-bottom: 2rem;
|
7
|
+
|
8
|
+
&.full-width {
|
9
|
+
width: 70%;
|
10
|
+
}
|
11
|
+
}
|
12
|
+
|
13
|
+
.description__title {
|
14
|
+
font-size: 1.5rem;
|
15
|
+
font-weight: 600;
|
16
|
+
margin-top: 1rem;
|
17
|
+
}
|
18
|
+
.description__content {
|
19
|
+
padding-bottom: 20px;
|
20
|
+
padding-top: 20px;
|
21
|
+
}
|
22
|
+
|
23
|
+
.small__title {
|
24
|
+
font-size: 1.2rem;
|
25
|
+
font-weight: 600;
|
26
|
+
margin-top: 1rem;
|
27
|
+
}
|
28
|
+
|
29
|
+
.description__divider {
|
30
|
+
width: 3.5rem;
|
31
|
+
border-bottom: 2px solid #e5e7eb;
|
32
|
+
margin-bottom: 1rem;
|
33
|
+
}
|
34
|
+
|
35
|
+
.description__text {
|
36
|
+
color: #4b5563;
|
37
|
+
line-height: 1.6;
|
38
|
+
margin-top: 0.75rem;
|
39
|
+
}
|
40
|
+
|
41
|
+
.description__button-wrap {
|
42
|
+
margin-top: 1rem;
|
43
|
+
}
|
44
|
+
|
45
|
+
.primary-button {
|
46
|
+
background-color: #3b82f6;
|
47
|
+
color: white;
|
48
|
+
padding: 0.5rem 1.25rem;
|
49
|
+
border: none;
|
50
|
+
border-radius: 0.375rem;
|
51
|
+
cursor: pointer;
|
52
|
+
font-weight: 500;
|
53
|
+
transition: background-color 0.2s;
|
54
|
+
|
55
|
+
&:hover {
|
56
|
+
background-color: #2563eb;
|
57
|
+
}
|
58
|
+
}
|
59
|
+
|
60
|
+
.description__subtitle {
|
61
|
+
font-size: 1.125rem;
|
62
|
+
font-weight: 600;
|
63
|
+
margin-bottom: 1rem;
|
64
|
+
}
|
65
|
+
|
66
|
+
.policy__rules-list {
|
67
|
+
list-style-type: disc;
|
68
|
+
padding-left: 1.25rem;
|
69
|
+
color: #4b5563;
|
70
|
+
}
|
71
|
+
|
72
|
+
.policy__rule {
|
73
|
+
margin-bottom: 0.5rem;
|
74
|
+
line-height: 1.5;
|
75
|
+
}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
.property-card-wrapper {
|
2
|
+
position: relative;
|
3
|
+
overflow: hidden;
|
4
|
+
}
|
5
|
+
|
6
|
+
.property-card-container {
|
7
|
+
max-width: 1200px;
|
8
|
+
margin: 0 auto;
|
9
|
+
padding: 2rem;
|
10
|
+
}
|
11
|
+
|
12
|
+
.property-card-empty {
|
13
|
+
min-height: 100vh;
|
14
|
+
display: flex;
|
15
|
+
align-items: center;
|
16
|
+
justify-content: center;
|
17
|
+
|
18
|
+
.text-center {
|
19
|
+
text-align: center;
|
20
|
+
|
21
|
+
.no-results-title {
|
22
|
+
font-size: 2rem;
|
23
|
+
font-weight: bold;
|
24
|
+
color: #111;
|
25
|
+
}
|
26
|
+
|
27
|
+
.no-results-text {
|
28
|
+
margin-top: 0.5rem;
|
29
|
+
color: #666;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
.property-card-grid {
|
35
|
+
display: grid;
|
36
|
+
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
37
|
+
gap: 2rem;
|
38
|
+
|
39
|
+
// optional media queries for responsiveness
|
40
|
+
@media (max-width: 768px) {
|
41
|
+
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
42
|
+
}
|
43
|
+
|
44
|
+
@media (max-width: 480px) {
|
45
|
+
grid-template-columns: 1fr;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|