Commit 8107e696 by jaymehta
2 parents 5685c638 5ef61bb4
...@@ -308,15 +308,15 @@ const BlogsItem = ({blogs}) => { ...@@ -308,15 +308,15 @@ const BlogsItem = ({blogs}) => {
<span className="image-container"> <span className="image-container">
<Image layout="fill" alt="" className="image img-fluid" src={cleanImage(data?.attributes?.image?.data?.attributes)} /> <Image layout="fill" alt="" className="image img-fluid" src={cleanImage(data?.attributes?.image?.data?.attributes)} />
</span> </span>
<div className="top-rated">{data?.attributes?.categories}</div> {/* <div className="top-rated">{data?.attributes?.categories}</div> */}
</div> </div>
<div className="info"> <div className="info">
<div className="read-row"> {/* <div className="read-row">
<span className="image-container"> <span className="image-container">
<Image layout="fill" alt="" className="image img-fluid" src="/images/icons/clock.svg" /> <Image layout="fill" alt="" className="image img-fluid" src="/images/icons/clock.svg" />
</span> </span>
<div className="">{data?.attributes?.read} Read</div> <div className="">{data?.attributes?.read} Read</div>
</div> </div> */}
<div className="title">{data?.attributes?.title}</div> <div className="title">{data?.attributes?.title}</div>
<div className="discription" dangerouslySetInnerHTML={{ __html: data?.attributes?.description }}></div> <div className="discription" dangerouslySetInnerHTML={{ __html: data?.attributes?.description }}></div>
<div className="read-more"> <div className="read-more">
......
...@@ -54,8 +54,9 @@ const Testimonial = ({ testimonial }) => { ...@@ -54,8 +54,9 @@ const Testimonial = ({ testimonial }) => {
rating={rating} rating={rating}
starRatedColor="#ffe200" // Set the rated color to yellow starRatedColor="#ffe200" // Set the rated color to yellow
starHoverColor="#ffe200" // Set the hover color to yellow starHoverColor="#ffe200" // Set the hover color to yellow
changeRating={handleRatingChange} // changeRating={handleRatingChange}
numberOfStars={5} numberOfStars={5}
isSelectable={false}
name="rating" name="rating"
starDimension="16px" // Set star width and height starDimension="16px" // Set star width and height
/> />
......
...@@ -120,7 +120,7 @@ const LetDiscover = ({ categories }) => { ...@@ -120,7 +120,7 @@ const LetDiscover = ({ categories }) => {
}} }}
> >
<span className="image-container"> <span className="image-container">
<Image layout="fill" alt="" className="image img-fluid" src={"/images/discover/01.png"} /> <Image layout="fill" alt="" className="image img-fluid" src={"/images/discover/01.webp"} />
</span> </span>
<div className="title">{"All"}</div> <div className="title">{"All"}</div>
</a> </a>
......
...@@ -82,10 +82,13 @@ const ListingItems = ({ allActivitiesData, loading, gridClass, totalCount }) => ...@@ -82,10 +82,13 @@ const ListingItems = ({ allActivitiesData, loading, gridClass, totalCount }) =>
</div> </div>
</div> </div>
<div className="discription"> <div className="discription">
{data.discription} <a href="">Read More</a> {data.discription}
{/* <a href="">Read More</a> */}
</div> </div>
<div className="price"> <div className="price">
${data?.attributes?.pricePerPerson} <span className="off">{data?.attributes?.off}% OFF</span> ${data?.attributes?.pricePerPerson} <span className="off">{data?.attributes?.off}
{/* % OFF */}
</span>
</div> </div>
<div className="detail"> <div className="detail">
<div className="">For 1 Night</div> <div className="">For 1 Night</div>
......
...@@ -123,7 +123,7 @@ const Login = props => { ...@@ -123,7 +123,7 @@ const Login = props => {
</Link> </Link>
</p> </p>
</div> </div>
{props && props.type == "user" && ( {/* {props && props.type == "user" && (
<> <>
<div className="input-group mb-0"> <div className="input-group mb-0">
<div className="btn-continue"> <div className="btn-continue">
...@@ -150,7 +150,7 @@ const Login = props => { ...@@ -150,7 +150,7 @@ const Login = props => {
</div> </div>
</div> </div>
</> </>
)} )} */}
</div> </div>
</div> </div>
</div> </div>
......
...@@ -190,8 +190,8 @@ const Signup = props => { ...@@ -190,8 +190,8 @@ const Signup = props => {
</div> </div>
<div className="input-group"> <div className="input-group">
<label>Mobile No.</label> <label>Mobile No.</label>
<div className="contact-number"> <div className="contact-numbe w-100">
<select {/* <select
id="countryCode" id="countryCode"
name="countryCode" name="countryCode"
onChange={handleChange} onChange={handleChange}
...@@ -203,7 +203,7 @@ const Signup = props => { ...@@ -203,7 +203,7 @@ const Signup = props => {
> >
<option value="+91">+91</option> <option value="+91">+91</option>
<option value="+44">+44</option> <option value="+44">+44</option>
</select> </select> */}
<input <input
type="text" type="text"
name="mobile" name="mobile"
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!