- Guests are required to pay a 21% advance at the time of booking itself. The entire balance needs to be cleared upon arrival at the property during check-in.
+
+- Our standard check-in time is 12 PM and the standard check-out time is 10 AM. Early check-in and late check-out requests are subject to availability, and may also attract an additional fee at the property's discretion.
+
+- We strictly DO NOT allow a group of more than 8 people. In case of a group of 4 or more, you might be purposefully allotted different dorm rooms. Further, if the group behaviour is deemed unfit at the property, the Zostel Property Manager, upon subjective evaluation, retains the full right to take required action which may also result in an on-spot cancellation without refunds.
+
+- Children below 18 years of age are not permitted entry/stay at any of our hostels, with or without guardians. We do not recommend families.
+
+- We only accept a government ID as valid identification proof. No local IDs shall be accepted at the time of check-in.
+
+- Guests are not permitted to bring outsiders inside the hostel campus.
+
+- We believe in self-help and do not provide luggage assistance or room services.
+
+- Drugs and any substance abuse is strictly banned inside and around the property.
+
+- Alcohol consumption is strictly prohibited in and around the property premises.
+
+- Right to admission reserved.
+
+
Chargeable & non-chargeable activities:
+
+Bonfire: INR 100 per person
+
+Rock climbing: INR 100 per person
+
+A Snooker Table: INR 150 per hour (12-2 PM and 7-11 PM only)
+
+Slacklining: Free of cost
+
+Badminton: Free of cost
+
+
+
+
NOTE:
+
+- You are advised to not follow any online maps for directions.
+
+- Only self-driven vehicles are allowed to be parked at the property. Chauffeur-driven cars can use the parking facility near the paragliding landing site.
+
+
+
+
+
Cancellation Policy
+
We understand that sometimes plans change. Hence, to make it light on your pocket, we are only charging a 21% advance, which is on a non-refundable basis.
+
+
+
+
NOTE:
+
+- 21% advance payment is non-refundable at all times, as stated above.
+
+- If you have paid any amount over this 21%, it stands applicable for a credit only if the cancellation is informed 7 days or more in advance. You will be able to avail the credited amount for any future booking at any of our properties.
+
+- If informed within 7 days of the standard check-in time (12 pm), the amount shall be adjusted against the cancellation fee.
+
+
+
+For any other queries, please reach out to us at reservations@zostel.com.
+
+
+
+
+
+
+
+
Summary
+
+
+ starting from
+
+
+
+
+
+
+
+
+
+
Tax
+
+
+
+
Total (tax incl.)
+
+
+
+
Payable Now
+
+
+
+
+
+
I acknowledge and accept the terms and conditions mentioned in the Property Policy & Cancellation Policy.
+
+
+
Reserve
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+
+export default Payment;
\ No newline at end of file
diff --git a/zostel/src/Pages/Allrouter.jsx b/zostel/src/Pages/Allrouter.jsx
new file mode 100644
index 0000000..ac7d4d0
--- /dev/null
+++ b/zostel/src/Pages/Allrouter.jsx
@@ -0,0 +1,23 @@
+import {Routes,Route} from 'react-router-dom';
+import Destination from "./DestinationPage";
+import HomePage from "./HomePage";
+import Hotel from "./HotelPage"
+import Destinations from './DestinationsPage';
+
+
+function Allrouter(){
+ return (
+
+
+
+ } >
+ } >
+ } >
+ } >
+ {/* } > */}
+
+
+ );
+}
+
+export default Allrouter;
\ No newline at end of file
diff --git a/zostel/src/Pages/DestinationPage.js b/zostel/src/Pages/DestinationPage.js
index 7060c44..4b75f72 100644
--- a/zostel/src/Pages/DestinationPage.js
+++ b/zostel/src/Pages/DestinationPage.js
@@ -2,8 +2,12 @@ import Location from '../Components/destination/Location'
import About from '../Components/destination/About'
import Hotels from '../Components/destination/Hotels'
import Map from '../Components/destination/Map'
-function Destination({id,name,hotels,desc,img})
+import { useParams } from 'react-router-dom';
+import data from '../demo.json'
+function Destination()
{
+ const {id}=useParams();
+ {}
return(<>
diff --git a/zostel/src/Pages/DestinationsPage.js b/zostel/src/Pages/DestinationsPage.js
index e69de29..e6630c5 100644
--- a/zostel/src/Pages/DestinationsPage.js
+++ b/zostel/src/Pages/DestinationsPage.js
@@ -0,0 +1,10 @@
+import ExpDestination from '../Components/destinations/ExpDestinations';
+function Destinations(){
+return(
+
+
+
+);
+}
+
+export default Destinations;
From 42fd9e344f53e0efaca67843ab7308a9e1891782 Mon Sep 17 00:00:00 2001
From: Agramom <108925739+Agramom@users.noreply.github.com>
Date: Mon, 13 Feb 2023 16:47:52 +0530
Subject: [PATCH 3/9] testing
---
zostel/src/Components/destination/Hotels.jsx | 13 +++------
zostel/src/Pages/Allrouter.jsx | 2 +-
zostel/src/Pages/DestinationPage.js | 17 ++++++++---
zostel/src/Pages/HotelPage.js | 30 ++++++++++++++------
4 files changed, 40 insertions(+), 22 deletions(-)
diff --git a/zostel/src/Components/destination/Hotels.jsx b/zostel/src/Components/destination/Hotels.jsx
index a81373f..180f7c5 100644
--- a/zostel/src/Components/destination/Hotels.jsx
+++ b/zostel/src/Components/destination/Hotels.jsx
@@ -1,17 +1,12 @@
import data from '../../demo.json'
import { useState } from 'react'
+import { useNavigate } from 'react-router-dom';
function Hotels({name,hotels})
{
+ let hotel=useNavigate()
let[hover,Sethover]=useState(false);
- function hoveron()
- {
- Sethover(true);
- }
- function hoveroff()
- {
- Sethover(false)
- }
+
// Styles
const stayStyles={
@@ -102,7 +97,7 @@ function Hotels({name,hotels})