Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Product Care, Cancellation details, Help Desk, Home page intro and Tagline #2304

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/User/pages/Cancellation/Cancellation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ const CancellationPage = () => {
<option value="no_longer_needed">Item no longer needed</option>
<option value="poor_service">Poor customer service</option>
<option value="high_shipping">High shipping costs</option>
<option value="product_quality">Concerns about product quality</option>
<option value="change_circumstances">Change in personal circumstances</option>
<option value="product_quality">REceived Damaged Product</option>
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix "Received" speeling

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@codervivek5 Updated the requested changes. Kindly verify. Thank you.

<option value="change_circumstances">Relocation or Health Issue</option>
<option value="others">Others</option>
</select>
{reason === 'others' && (
Expand Down
30 changes: 28 additions & 2 deletions src/User/pages/Help/Help.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ const Help = () => {
</div>
</div>
<div className="helpfaq">
<h2 className="">Most Frequently Queries</h2>
<h2 className="">Most Frequent Queries</h2>
<ul>
{questions.map((question, index) => (
<li key={index}>
Expand Down Expand Up @@ -195,10 +195,36 @@ const faqData = [
answer:
"Yes, we offer bulk purchase discounts. Please contact our sales team for more information.",
},
{
question: "Are your products eco-friendly or sustainably sourced?",
answer: "At VigyBag, we are committed to sustainability and environmental responsibility. All our products are carefully curated to ensure they are eco-friendly and sourced from suppliers who prioritize sustainable practices. We believe in providing high-quality essentials that not only meet your needs but also contribute to a healthier planet. Each item reflects our dedication to reducing environmental impact and promoting a sustainable lifestyle. Thank you for supporting our mission!",
},
{
question: "Can I cancel my order?",
answer: "Yes, you can cancel your if it hasn't shipped yet.<br/> Otherwise, you may return it after delivery.",
},
{
question: "What if my order is delayed?",
answer: "If your order is delayed, we sincerely apologize for the inconvenience.<br/> Please check your email for updates or tracking information. If you need further assistance, feel free to contact our customer service team, and we’ll be happy to help resolve any issues.",
},
{
question: "How to contact customer support?",
answer:
"1. Help assistance from VigyBot > Contact Support <br/> 2. Home Page > Scroll Down > Quick Links > Contact Us > Enter Your Details > Submit 'Send Message' > Check Email for further notice > Unnecessary empty spaces removed",
},
{
question: "When will I receive my Refund?",
answer:
"The refund amout is transferred within 5-7 business days to the respective mode of payment. <br/> Incase of any delay, kindly contact the customer support and provide your Order-ID",
},
{
question: "Why am I unable to place order? <br/> or <br/> Why is my order getting rejected?",
answer: "There may be multiple reasons: <br/> 1.Issue in Login/Account Details <br/> 2.Payment Authentication isssues <br/> 3. Payment Timeout",
},
{
question: "What payment methods do you accept?",
answer: "We accept Visa, MasterCard, American Express, and PayPal.",
},
];

export default Help;
export default Help;
13 changes: 7 additions & 6 deletions src/User/pages/Home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,15 +186,16 @@ const Home = () => {
<h2
className="text-[25px] sm:text-2xl md:text-[33px] font-semibold mb-6"
style={{ lineHeight: "1.5" }}>
Your Eco-Friendly Shopping Heaven
Elevate your Eco Essentials with STYLE!!!
</h2>
<p
className="mb-6 text-gray-700 text-[20px] sm:text-[23px]"
style={{ lineHeight: "1.5" }}>
At VigyBag, we curate the finest earth-friendly essentials to
help you reduce your environmental footprint without
compromising on quality or style. Shop smart, live green, and
embrace a sustainable future with VigyBag.
At VigyBag, we curate premium, earth-friendly
essentials designed to help you reduce your environmental footprint
without sacrificing style or quality. Embrace a sustainable
lifestyle with confidence. Shop smart, live green, and transform
your everyday choices into a brighter, eco-friendly future!
</p>
<button
type="button"
Expand Down Expand Up @@ -279,7 +280,7 @@ const Home = () => {
fontSize: "16px",
marginBottom: "20px",
}}>
Subscribe to our newsletter to receive exclusive updates,
Subscribe to our newsletter for exclusive updates,
promotions, and tips.
</p>
<form>
Expand Down
8 changes: 4 additions & 4 deletions src/User/pages/Order/Checkout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const CheckoutForm = () => {
style={{ border: "2px solid green", padding: "13px 13px", borderRadius: "10px" }}>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4 mb-4">
<div>
<label className="block mb-1 font-medium">Name</label>
<label className="block mb-1 font-medium">Customer Name</label>
<input
type="text"
name="name"
Expand All @@ -54,7 +54,7 @@ const CheckoutForm = () => {
/>
</div>
<div>
<label className="block mb-1 font-medium">Mobile No</label>
<label className="block mb-1 font-medium">Customer Contact No</label>
<input
type="text"
name="mobile"
Expand All @@ -65,7 +65,7 @@ const CheckoutForm = () => {
</div>
</div>
<div className="mb-4">
<label className="block mb-1 font-medium">Email Address</label>
<label className="block mb-1 font-medium">Customer Email Address</label>
<input
type="email"
name="email"
Expand Down Expand Up @@ -126,7 +126,7 @@ const CheckoutForm = () => {
onChange={handleChange}
className="mr-2"
/>
<label className="font-medium">Make Default Address</label>
<label className="font-medium">Set Default Address</label>
</div>
<button
type="submit"
Expand Down
3 changes: 3 additions & 0 deletions src/User/pages/ProductCare/ProductCare.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const ProductCareInstructionsPage = () => {
<ul className="list-disc list-inside text-gray-700 space-y-2 sm:space-y-4">
<li>Store in a cool, dry place away from direct sunlight.</li>
<li>Avoid exposing the product to extreme temperatures or humidity.</li>
<li>Use within limits and handle carefully to prevent strain and accidental damage.</li>
<li>Regularly check for signs of wear and address any issues promptly.</li>
<li>Follow any specific instructions provided by the manufacturer.</li>
</ul>
Expand All @@ -35,9 +36,11 @@ const ProductCareInstructionsPage = () => {
</p>
<ul className="list-disc list-inside text-gray-700 space-y-2 sm:space-y-4">
<li>Inspect the product regularly for any signs of damage.</li>
<li>Keep software and firmware updated for peak performance and enhanced security.</li>
<li>Lubricate moving parts if applicable, using recommended products.</li>
<li>Replace any worn or damaged components promptly.</li>
<li>Consult the product manual for specific maintenance recommendations.</li>
<li>Maintain accuracy and safety by using approved parts recalibrating regularly.</li>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

LGTM: Crucial safety and accuracy tip (minor typo)

This addition emphasizes the importance of maintaining product accuracy and safety, which is crucial for many types of equipment.

There's a minor typo in this line. Apply the following change:

-              <li>Maintain accuracy and safety by using approved parts recalibrating regularly.</li>
+              <li>Maintain accuracy and safety by using approved parts and recalibrating regularly.</li>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<li>Maintain accuracy and safety by using approved parts recalibrating regularly.</li>
<li>Maintain accuracy and safety by using approved parts and recalibrating regularly.</li>

</ul>
</div>
</section>
Expand Down