Files
kakawa/src/app/(static)/shipping-policy/page.tsx

83 lines
3.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default function ShippingPage() {
return (
<div className='p-8 pt-28 text-black leading-relaxed mx-auto max-w-screen-lg text-justify gap-4'>
<h1 className='text-[200%] font-bold text-center'>Shipping Policy</h1>
<h2 className='text-[150%] font-semibold'>Order Processing</h2>
<p>
Please allow 1 week to process your order. Expect an email within 1 week to let you know your order is on the
way!
</p>
<h2 className='text-[150%] font-semibold'>Store Pickup</h2>
<p>SCO 9, Sector 8, Inner Market, Chandigarh 160009</p>
<p>
Orders can be picked up daily, from 10am to Midnight. An email will be sent when your order is ready for pickup.
</p>
<h2 className='text-[150%] font-semibold'>Local Delivery</h2>
<p>
During checkout, enter your address and choose the ship option. Click the &quot;continue to shipping&quot;
button. Local delivery is available for addresses within 5km of our shop. If the local delivery option does not
show up during checkout, your order is not eligible for local delivery.
</p>
<p>
Orders placed before Noon during store hours will be delivered the same day. Orders placed outside of these
hours will be delivered the next day we are open.
</p>
<p>When your order is ready for delivery, you will receive an email with real-time tracking information.</p>
<h2 className='text-[150%] font-semibold'>Flat Rate Shipping</h2>
<p>
Orders are generally shipped within 1 week using a courier service. Shipping fee applies to orders shipping to
locations outside Chandigarh tricity. We do not ship outside of India at this time.
</p>
<h2 className='text-[150%] font-semibold'>Domestic Shipping Rates and Estimates</h2>
<p>
For calculated shipping rates: Shipping charges for your order will be calculated and displayed at checkout.
</p>
{/* <p>For simple flat rate shipping: We offer $X flat rate shipping to [list countries].</p> */}
{/* <p>You can also emphasize any free shipping thresholds you offer (e.g. free shipping for orders over $75).</p> */}
{/* <table border='1'>
<thead>
<tr>
<th>Shipping Option</th>
<th>Estimated Delivery Time</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Option 1</td>
<td>X to X business days</td>
<td>$X</td>
</tr>
<tr>
<td>Option 2</td>
<td>X to X business days</td>
<td>$X</td>
</tr>
<tr>
<td>Option 3</td>
<td>X to X business days</td>
<td>$X</td>
</tr>
</tbody>
</table> */}
<p>
In the event that your order arrives damaged in any way, please email us as soon as possible at{' '}
<a href='mailto:support@mozimo.in'>support@mozimo.in</a> with your order number and a photo of the items
condition. We address these on a case-by-case basis but will try our best to work towards a satisfactory
solution.
</p>
<p>
If you have any further questions, please don&apos;t hesitate to contact us at{' '}
<a href='mailto:support@mozimo.in'>support@mozimo.in</a>.
</p>
</div>
);
}