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,131 @@
|
|
1
|
+
.modern-facilities-section {
|
2
|
+
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
|
3
|
+
padding: 1rem 2rem;
|
4
|
+
min-height: 100vh;
|
5
|
+
display: flex;
|
6
|
+
align-items: center;
|
7
|
+
justify-content: center;
|
8
|
+
}
|
9
|
+
|
10
|
+
.facilities-container {
|
11
|
+
max-width: 1200px;
|
12
|
+
width: 100%;
|
13
|
+
text-align: center;
|
14
|
+
}
|
15
|
+
|
16
|
+
.facilities-main-title {
|
17
|
+
font-size: 2.5rem;
|
18
|
+
font-weight: 800;
|
19
|
+
color: #081976;
|
20
|
+
margin-bottom: 3rem;
|
21
|
+
letter-spacing: -0.02em;
|
22
|
+
text-transform: uppercase;
|
23
|
+
}
|
24
|
+
|
25
|
+
.facilities-grid {
|
26
|
+
display: grid;
|
27
|
+
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
28
|
+
gap: 2rem;
|
29
|
+
margin-bottom: 3rem;
|
30
|
+
}
|
31
|
+
|
32
|
+
.facility-card {
|
33
|
+
background: white;
|
34
|
+
border-radius: 12px;
|
35
|
+
padding: 2rem;
|
36
|
+
display: flex;
|
37
|
+
align-items: flex-start;
|
38
|
+
text-align: left;
|
39
|
+
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
|
40
|
+
transition: all 0.3s ease;
|
41
|
+
border: 1px solid #f1f3f4;
|
42
|
+
cursor: pointer;
|
43
|
+
}
|
44
|
+
|
45
|
+
.facility-card:hover {
|
46
|
+
transform: translateY(-5px);
|
47
|
+
box-shadow: 0 8px 30px rgba(39, 130, 248, 0.15);
|
48
|
+
}
|
49
|
+
|
50
|
+
.icon-container {
|
51
|
+
background: #081976;
|
52
|
+
width: 60px;
|
53
|
+
height: 60px;
|
54
|
+
border-radius: 50%;
|
55
|
+
display: flex;
|
56
|
+
align-items: center;
|
57
|
+
justify-content: center;
|
58
|
+
margin-right: 1.5rem;
|
59
|
+
flex-shrink: 0;
|
60
|
+
}
|
61
|
+
|
62
|
+
.facility-icon {
|
63
|
+
font-size: 1.5rem;
|
64
|
+
filter: brightness(0) invert(1);
|
65
|
+
}
|
66
|
+
|
67
|
+
.facility-content {
|
68
|
+
flex: 1;
|
69
|
+
}
|
70
|
+
|
71
|
+
.facility-title {
|
72
|
+
font-size: 1.25rem;
|
73
|
+
font-weight: 600;
|
74
|
+
color: #2c3e50;
|
75
|
+
margin-bottom: 0.5rem;
|
76
|
+
line-height: 1.3;
|
77
|
+
}
|
78
|
+
|
79
|
+
.facility-description {
|
80
|
+
font-size: 0.95rem;
|
81
|
+
color: #6c757d;
|
82
|
+
line-height: 1.6;
|
83
|
+
margin: 0;
|
84
|
+
}
|
85
|
+
|
86
|
+
@media (max-width: 768px) {
|
87
|
+
.modern-facilities-section {
|
88
|
+
padding: 3rem 1rem;
|
89
|
+
}
|
90
|
+
|
91
|
+
.facilities-main-title {
|
92
|
+
font-size: 2rem;
|
93
|
+
}
|
94
|
+
|
95
|
+
.facilities-grid {
|
96
|
+
grid-template-columns: 1fr;
|
97
|
+
gap: 1.5rem;
|
98
|
+
}
|
99
|
+
|
100
|
+
.facility-card {
|
101
|
+
padding: 1.5rem;
|
102
|
+
}
|
103
|
+
|
104
|
+
.icon-container {
|
105
|
+
width: 50px;
|
106
|
+
height: 50px;
|
107
|
+
margin-right: 1rem;
|
108
|
+
}
|
109
|
+
|
110
|
+
.facility-icon {
|
111
|
+
font-size: 1.25rem;
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
115
|
+
@media (max-width: 480px) {
|
116
|
+
.facilities-main-title {
|
117
|
+
font-size: 1.5rem;
|
118
|
+
}
|
119
|
+
|
120
|
+
.facility-card {
|
121
|
+
padding: 1.25rem;
|
122
|
+
}
|
123
|
+
|
124
|
+
.facility-title {
|
125
|
+
font-size: 1.1rem;
|
126
|
+
}
|
127
|
+
|
128
|
+
.facility-description {
|
129
|
+
font-size: 0.9rem;
|
130
|
+
}
|
131
|
+
}
|
@@ -0,0 +1,137 @@
|
|
1
|
+
// Variables
|
2
|
+
$primary-color: #081976;
|
3
|
+
|
4
|
+
.navbar {
|
5
|
+
background-color: white;
|
6
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
7
|
+
position: fixed;
|
8
|
+
width: 100%;
|
9
|
+
z-index: 100;
|
10
|
+
top: 0;
|
11
|
+
height: 79px;
|
12
|
+
}
|
13
|
+
|
14
|
+
.container {
|
15
|
+
max-width: 1280px;
|
16
|
+
margin: 0 auto;
|
17
|
+
}
|
18
|
+
|
19
|
+
.navContent {
|
20
|
+
display: flex;
|
21
|
+
justify-content: space-between;
|
22
|
+
align-items: center;
|
23
|
+
height: 79px;
|
24
|
+
}
|
25
|
+
|
26
|
+
.logo {
|
27
|
+
display: flex;
|
28
|
+
align-items: center;
|
29
|
+
margin-top: 8px;
|
30
|
+
}
|
31
|
+
|
32
|
+
.logospan {
|
33
|
+
font-size: 1.3rem;
|
34
|
+
font-weight: bold;
|
35
|
+
}
|
36
|
+
|
37
|
+
.navMenu {
|
38
|
+
display: flex;
|
39
|
+
gap: 1.7rem;
|
40
|
+
margin-top: 8px;
|
41
|
+
font-size: 0.4rem;
|
42
|
+
font-weight: 500;
|
43
|
+
margin-left: auto;
|
44
|
+
}
|
45
|
+
|
46
|
+
.navLink {
|
47
|
+
color: #898989;
|
48
|
+
text-decoration: none;
|
49
|
+
font-size: 16px;
|
50
|
+
transition: color 0.3s ease;
|
51
|
+
gap: 5px;
|
52
|
+
display: flex;
|
53
|
+
align-items: center;
|
54
|
+
.icon {
|
55
|
+
font-size: 18px;
|
56
|
+
display: flex;
|
57
|
+
align-items: center;
|
58
|
+
}
|
59
|
+
.text {
|
60
|
+
font-size: 16px;
|
61
|
+
}
|
62
|
+
&:hover {
|
63
|
+
color: $primary-color;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
.navLink.active {
|
68
|
+
color: $primary-color;
|
69
|
+
}
|
70
|
+
|
71
|
+
// .loginButton {
|
72
|
+
// background-color: #db7c0b;`
|
73
|
+
// color: white;
|
74
|
+
// padding: 0.5rem 1rem;
|
75
|
+
// border-radius: 5px;
|
76
|
+
// text-decoration: none;
|
77
|
+
// font-size: 0.8rem;
|
78
|
+
// font-weight: bold;
|
79
|
+
// transition: background-color 0.3s ease;
|
80
|
+
// margin-left: 1rem;
|
81
|
+
// }
|
82
|
+
|
83
|
+
// .loginButton:hover {
|
84
|
+
// background-color: #db7c0b;
|
85
|
+
// }
|
86
|
+
|
87
|
+
.authButtons {
|
88
|
+
display: flex;
|
89
|
+
gap: 0.8rem;
|
90
|
+
margin-left: auto;
|
91
|
+
align-items: center;
|
92
|
+
}
|
93
|
+
|
94
|
+
.loginButton {
|
95
|
+
border: 1px solid #a8a8a8;
|
96
|
+
color: rgb(55 65 81);
|
97
|
+
padding: 0.5rem 1rem;
|
98
|
+
border-radius: 28px;
|
99
|
+
text-decoration: none;
|
100
|
+
font-size: 0.8rem;
|
101
|
+
font-weight: bold;
|
102
|
+
transition: background-color 0.3s ease;
|
103
|
+
}
|
104
|
+
|
105
|
+
// .loginButton:hover {
|
106
|
+
// background-color: #e0a800;
|
107
|
+
// }
|
108
|
+
|
109
|
+
.signupButton {
|
110
|
+
border: 1px solid #a8a8a8;
|
111
|
+
color: rgb(55 65 81);
|
112
|
+
padding: 0.5rem 1rem;
|
113
|
+
border-radius: 28px;
|
114
|
+
text-decoration: none;
|
115
|
+
font-size: 0.8rem;
|
116
|
+
font-weight: bold;
|
117
|
+
transition: background-color 0.3s ease;
|
118
|
+
}
|
119
|
+
|
120
|
+
// .signupButton:hover {
|
121
|
+
// background-color: #e0a800;
|
122
|
+
// }
|
123
|
+
|
124
|
+
.logoutButton {
|
125
|
+
border: 1px solid #a8a8a8;
|
126
|
+
color: rgb(55 65 81);
|
127
|
+
// padding: 0.5rem 1rem !important;
|
128
|
+
border-radius: 28px;
|
129
|
+
text-decoration: none;
|
130
|
+
font-size: 0.8rem;
|
131
|
+
font-weight: bold;
|
132
|
+
transition: background-color 0.3s ease;
|
133
|
+
background: none !important;
|
134
|
+
font-family: Poppins, sans-serif, sans-serif;
|
135
|
+
width: 78.31px !important;
|
136
|
+
height: 36px !important;
|
137
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');
|
2
|
+
|
3
|
+
$pop: 'Poppins', sans-serif;
|
4
|
+
$rop: sans-serif;
|
5
|
+
|
6
|
+
:root {
|
7
|
+
--font-display: #{$rop};
|
8
|
+
--font-body: #{$pop};
|
9
|
+
}
|
10
|
+
|
11
|
+
html,
|
12
|
+
body {
|
13
|
+
font-family: var(--font-body), sans-serif;
|
14
|
+
@apply antialiased;
|
15
|
+
}
|
16
|
+
|
17
|
+
h1,
|
18
|
+
h2,
|
19
|
+
h3,
|
20
|
+
h4 {
|
21
|
+
font-family: var(--font-display), sans-serif;
|
22
|
+
}
|
@@ -0,0 +1,300 @@
|
|
1
|
+
.footer {
|
2
|
+
background-color: #0a0b1d;
|
3
|
+
color: #ffffff;
|
4
|
+
padding: 6rem 0;
|
5
|
+
text-align: left;
|
6
|
+
width: 100%;
|
7
|
+
box-sizing: border-box;
|
8
|
+
|
9
|
+
&__container {
|
10
|
+
max-width: 1100px;
|
11
|
+
margin: 0 auto;
|
12
|
+
display: flex;
|
13
|
+
justify-content: space-between;
|
14
|
+
flex-wrap: wrap;
|
15
|
+
gap: 20px;
|
16
|
+
padding: 0 20px;
|
17
|
+
}
|
18
|
+
|
19
|
+
&__section {
|
20
|
+
flex: 1;
|
21
|
+
min-width: 200px;
|
22
|
+
margin-bottom: 20px;
|
23
|
+
|
24
|
+
&--instafeed {
|
25
|
+
min-width: 150px;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
&__title {
|
30
|
+
font-size: 16px;
|
31
|
+
font-weight: 600;
|
32
|
+
margin-bottom: 12px;
|
33
|
+
}
|
34
|
+
|
35
|
+
&__text {
|
36
|
+
font-size: 15px;
|
37
|
+
color: #777777;
|
38
|
+
line-height: 1.6;
|
39
|
+
}
|
40
|
+
|
41
|
+
&__list {
|
42
|
+
list-style: none;
|
43
|
+
padding: 0;
|
44
|
+
margin: 0;
|
45
|
+
line-height: 1.8;
|
46
|
+
|
47
|
+
&-item {
|
48
|
+
font-size: 14px;
|
49
|
+
color: #777777;
|
50
|
+
cursor: pointer;
|
51
|
+
transition: color 0.2s ease;
|
52
|
+
|
53
|
+
&:hover {
|
54
|
+
color: #ffcc00;
|
55
|
+
}
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
&__list--grid {
|
60
|
+
display: grid;
|
61
|
+
grid-template-columns: repeat(2, 1fr);
|
62
|
+
gap: 8px;
|
63
|
+
}
|
64
|
+
|
65
|
+
@media (max-width: 990px) {
|
66
|
+
&__list--grid {
|
67
|
+
grid-template-columns: repeat(2, 1fr);
|
68
|
+
max-width:200px;
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
|
73
|
+
@media (max-width: 570px) {
|
74
|
+
&__list--grid {
|
75
|
+
grid-template-columns: repeat(2, 1fr);
|
76
|
+
max-width:200px;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
@media (max-width: 360px) {
|
81
|
+
&__list--grid {
|
82
|
+
grid-template-columns: 1fr;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
|
86
|
+
&__newsletter {
|
87
|
+
display: flex;
|
88
|
+
border: 1px solid rgb(158, 157, 157);
|
89
|
+
overflow: hidden;
|
90
|
+
max-width: 280px;
|
91
|
+
margin-top: 20px;
|
92
|
+
}
|
93
|
+
|
94
|
+
&__input {
|
95
|
+
flex: 1;
|
96
|
+
padding: 13px;
|
97
|
+
border: none;
|
98
|
+
outline: none;
|
99
|
+
background-color: transparent;
|
100
|
+
color: #ffffff;
|
101
|
+
font-size: 14px;
|
102
|
+
|
103
|
+
&::placeholder {
|
104
|
+
color: #777777;
|
105
|
+
}
|
106
|
+
}
|
107
|
+
|
108
|
+
&__button {
|
109
|
+
background-color: #ffcc00;
|
110
|
+
border: none;
|
111
|
+
padding: 10px 15px;
|
112
|
+
cursor: pointer;
|
113
|
+
transition: background-color 0.2s ease;
|
114
|
+
|
115
|
+
&:hover {
|
116
|
+
background-color: #e6b800;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
|
120
|
+
&__instafeed {
|
121
|
+
display: grid;
|
122
|
+
grid-template-columns: repeat(4, 1fr);
|
123
|
+
gap: 8px;
|
124
|
+
|
125
|
+
&-img {
|
126
|
+
width: 100%;
|
127
|
+
aspect-ratio: 1/1;
|
128
|
+
object-fit: cover;
|
129
|
+
border-radius: 2px;
|
130
|
+
}
|
131
|
+
}
|
132
|
+
|
133
|
+
&__copyright {
|
134
|
+
text-align: center;
|
135
|
+
margin-top: 10px;
|
136
|
+
border-top: 1px solid #222;
|
137
|
+
padding-top: 20px;
|
138
|
+
font-size: 14px;
|
139
|
+
color: #777777;
|
140
|
+
width: 100%;
|
141
|
+
|
142
|
+
.footer__highlight {
|
143
|
+
color: #ffcc00;
|
144
|
+
}
|
145
|
+
|
146
|
+
.footer__socials {
|
147
|
+
margin-top: 10px;
|
148
|
+
display: flex;
|
149
|
+
justify-content: center;
|
150
|
+
gap: 15px;
|
151
|
+
|
152
|
+
.footer__social-icon {
|
153
|
+
font-size: 16px;
|
154
|
+
cursor: pointer;
|
155
|
+
color: #777777;
|
156
|
+
transition: color 0.2s ease;
|
157
|
+
|
158
|
+
&:hover {
|
159
|
+
color: #ffcc00;
|
160
|
+
}
|
161
|
+
}
|
162
|
+
}
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
166
|
+
@media (max-width: 990px) {
|
167
|
+
.footer {
|
168
|
+
padding: 4rem 0;
|
169
|
+
|
170
|
+
&__container {
|
171
|
+
flex-direction: row;
|
172
|
+
flex-wrap: wrap;
|
173
|
+
justify-content: space-between;
|
174
|
+
gap: 30px;
|
175
|
+
}
|
176
|
+
|
177
|
+
&__section {
|
178
|
+
flex-basis: calc(50% - 30px);
|
179
|
+
min-width: 0;
|
180
|
+
}
|
181
|
+
|
182
|
+
&__instafeed {
|
183
|
+
grid-template-columns: repeat(4, 1fr);
|
184
|
+
gap: 8px;
|
185
|
+
|
186
|
+
&-img {
|
187
|
+
width: 100%;
|
188
|
+
max-width: 55px;
|
189
|
+
height: auto;
|
190
|
+
}
|
191
|
+
}
|
192
|
+
}
|
193
|
+
}
|
194
|
+
|
195
|
+
@media (min-width: 990px) and (max-width: 1200px) {
|
196
|
+
.footer__input {
|
197
|
+
width: 0px;
|
198
|
+
}
|
199
|
+
}
|
200
|
+
|
201
|
+
@media (min-width: 570px) and (max-width: 990px) {
|
202
|
+
.footer {
|
203
|
+
&__instafeed {
|
204
|
+
grid-template-columns: repeat(4, 1fr);
|
205
|
+
gap: 8px;
|
206
|
+
max-width: 240px;
|
207
|
+
|
208
|
+
&-img {
|
209
|
+
max-width: 100%;
|
210
|
+
}
|
211
|
+
}
|
212
|
+
&__button {
|
213
|
+
|
214
|
+
padding: 12px;
|
215
|
+
}
|
216
|
+
|
217
|
+
&__newsletter {
|
218
|
+
width:248px;
|
219
|
+
}
|
220
|
+
|
221
|
+
}
|
222
|
+
}
|
223
|
+
|
224
|
+
@media (max-width: 570px) {
|
225
|
+
.footer {
|
226
|
+
padding: 3rem 0;
|
227
|
+
|
228
|
+
&__container {
|
229
|
+
flex-direction: column;
|
230
|
+
align-items: center;
|
231
|
+
gap: 30px;
|
232
|
+
}
|
233
|
+
|
234
|
+
&__section {
|
235
|
+
flex-basis: 100%;
|
236
|
+
width: 100%;
|
237
|
+
}
|
238
|
+
|
239
|
+
&__button {
|
240
|
+
|
241
|
+
padding: 12px;
|
242
|
+
}
|
243
|
+
|
244
|
+
&__instafeed {
|
245
|
+
grid-template-columns: repeat(3, 1fr);
|
246
|
+
gap: 8px;
|
247
|
+
max-width: 240px;
|
248
|
+
|
249
|
+
&-img {
|
250
|
+
max-width: 100%;
|
251
|
+
}
|
252
|
+
}
|
253
|
+
|
254
|
+
// &__list {
|
255
|
+
// margin: 0 auto;
|
256
|
+
// }
|
257
|
+
}
|
258
|
+
}
|
259
|
+
|
260
|
+
@media (max-width: 360px) {
|
261
|
+
.footer {
|
262
|
+
&__instafeed {
|
263
|
+
grid-template-columns: repeat(2, 1fr);
|
264
|
+
}
|
265
|
+
}
|
266
|
+
}
|
267
|
+
|
268
|
+
@media (min-width: 990px) and (max-width: 1200px) {
|
269
|
+
.footer__newsletter {
|
270
|
+
max-width: 200px;
|
271
|
+
}
|
272
|
+
|
273
|
+
.footer__input {
|
274
|
+
width: 100px;
|
275
|
+
padding: 13px;
|
276
|
+
}
|
277
|
+
|
278
|
+
.footer__button {
|
279
|
+
padding: 8px 12px;
|
280
|
+
}
|
281
|
+
|
282
|
+
.footer {
|
283
|
+
&__instafeed {
|
284
|
+
max-width: 200px;
|
285
|
+
grid-template-columns: repeat(3, 1fr);
|
286
|
+
}
|
287
|
+
}
|
288
|
+
}
|
289
|
+
|
290
|
+
@media (max-width:420px){
|
291
|
+
.footer__input {
|
292
|
+
width: 100px;
|
293
|
+
padding: 13px;
|
294
|
+
}
|
295
|
+
|
296
|
+
.footer__button {
|
297
|
+
padding: 8px 12px;
|
298
|
+
}
|
299
|
+
|
300
|
+
}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
.request-password-reset {
|
2
|
+
display: flex;
|
3
|
+
align-items: center;
|
4
|
+
justify-content: center;
|
5
|
+
min-height: 100vh;
|
6
|
+
background-color: #ffffff;
|
7
|
+
color: #1a1a1a;
|
8
|
+
|
9
|
+
&__container {
|
10
|
+
width: 100%;
|
11
|
+
max-width: 400px;
|
12
|
+
background-color: #ffffff;
|
13
|
+
border-radius: 8px;
|
14
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
15
|
+
padding: 2rem;
|
16
|
+
}
|
17
|
+
|
18
|
+
&__title {
|
19
|
+
font-size: 24px;
|
20
|
+
color: #db7c0b;
|
21
|
+
text-align: center;
|
22
|
+
margin-bottom: 1.5rem;
|
23
|
+
}
|
24
|
+
|
25
|
+
&__subtitle {
|
26
|
+
text-align: center;
|
27
|
+
margin-bottom: 1.5rem;
|
28
|
+
color: #555555;
|
29
|
+
font-size: 14px;
|
30
|
+
}
|
31
|
+
|
32
|
+
&__field {
|
33
|
+
margin-bottom: 1.5rem;
|
34
|
+
display: flex;
|
35
|
+
flex-direction: column;
|
36
|
+
}
|
37
|
+
|
38
|
+
&__label {
|
39
|
+
color: #db7c0b;
|
40
|
+
margin-bottom: 0.5rem;
|
41
|
+
font-weight: 600;
|
42
|
+
}
|
43
|
+
|
44
|
+
&__input {
|
45
|
+
padding: 0.5rem 0.75rem;
|
46
|
+
border: 1px solid #cccccc;
|
47
|
+
border-radius: 4px;
|
48
|
+
font-size: 14px;
|
49
|
+
outline: none;
|
50
|
+
transition: border-color 0.3s;
|
51
|
+
|
52
|
+
&:focus {
|
53
|
+
border-color: #db7c0b;
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
&__error {
|
58
|
+
color: #e3342f;
|
59
|
+
font-size: 12px;
|
60
|
+
margin-top: 0.5rem;
|
61
|
+
}
|
62
|
+
|
63
|
+
&__button {
|
64
|
+
width: 100%;
|
65
|
+
margin-top: 1rem;
|
66
|
+
}
|
67
|
+
}
|
68
|
+
|
@@ -0,0 +1,39 @@
|
|
1
|
+
.form-field {
|
2
|
+
display: flex;
|
3
|
+
flex-direction: column;
|
4
|
+
text-align: left;
|
5
|
+
width: 100%;
|
6
|
+
|
7
|
+
label {
|
8
|
+
font-size: 0.9rem;
|
9
|
+
font-weight: 500;
|
10
|
+
margin-bottom: 5px;
|
11
|
+
color: #333;
|
12
|
+
}
|
13
|
+
|
14
|
+
.input {
|
15
|
+
padding: 15px;
|
16
|
+
border: 1px solid #ccc;
|
17
|
+
border-radius: 8px;
|
18
|
+
font-size: 0.9rem;
|
19
|
+
background-color: white;
|
20
|
+
transition: border 0.3s ease;
|
21
|
+
outline: none;
|
22
|
+
|
23
|
+
&:focus {
|
24
|
+
border-color: #db7c0b;
|
25
|
+
box-shadow: 0 0 5px rgba(252, 185, 0, 0.5);
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
.textarea {
|
30
|
+
resize: vertical;
|
31
|
+
}
|
32
|
+
|
33
|
+
.error-text {
|
34
|
+
font-size: 0.8rem;
|
35
|
+
color: red;
|
36
|
+
margin-bottom: 0;
|
37
|
+
margin-top: 5px;
|
38
|
+
}
|
39
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
.form-item {
|
2
|
+
display: flex;
|
3
|
+
flex-direction: column;
|
4
|
+
|
5
|
+
&__content {
|
6
|
+
margin-top: 0.25rem; // similar to mt-1
|
7
|
+
}
|
8
|
+
|
9
|
+
&__desc {
|
10
|
+
display: block;
|
11
|
+
margin-top: 0.75rem; // similar to mt-3
|
12
|
+
font-size: 0.75rem; // text-xs
|
13
|
+
color: #6b7280; // neutral-500
|
14
|
+
|
15
|
+
@media (prefers-color-scheme: dark) {
|
16
|
+
color: #9ca3af; // neutral-400
|
17
|
+
}
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|