Files
Shifted/app/legal/refund-policy/page.tsx
2026-02-10 01:14:19 +00:00

110 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.
import InfoPage from "../../../components/InfoPage";
export default function RefundPolicyPage() {
return (
<InfoPage
title="Refund Policy"
subtitle="Clear return and refund expectations."
>
<div className="info-page__card">
<h2>Return Window</h2>
<p>
Eligible items may be returned within 30 days of delivery in new,
unused condition and with original packaging.
</p>
<p>
Return requests must be submitted before the window closes to be
eligible.
</p>
<p>
If a shipment arrives damaged, notify us within 48 hours so we can
coordinate with the carrier.
</p>
</div>
<div className="info-page__card">
<h2>Non-Returnable Items</h2>
<p>
Final-sale items, custom orders, or installed products are not eligible
for return unless defective.
</p>
<p>
Electronics or lighting that shows signs of installation may be
ineligible for return.
</p>
<p>
Special-order items are non-returnable unless the manufacturer
approves an exception.
</p>
</div>
<div className="info-page__card">
<h2>Refund Timing</h2>
<p>
Once your return is received and inspected, refunds are processed to
the original payment method within 5 to 10 business days.
</p>
<p>
Processing time can vary by payment provider and bank.
</p>
<p>
If we issue store credit, it will be emailed to the address on file.
</p>
</div>
<div className="info-page__card">
<h2>Return Shipping</h2>
<p>
Customers are responsible for return shipping unless the item is
defective or shipped in error.
</p>
<p>
We recommend insured shipping with tracking for all returns.
</p>
<p>
Items returned without authorization may be delayed or refused.
</p>
</div>
<div className="info-page__card">
<h2>Exchanges</h2>
<p>
If you need a different size or configuration, we can exchange the
item subject to availability. Exchange shipping costs may apply.
</p>
<p>
We may require the original item to be inspected before sending the
replacement.
</p>
</div>
<div className="info-page__card">
<h2>Refund Deductions</h2>
<p>
Returns that show use or missing packaging may be subject to a
restocking fee based on the condition received.
</p>
<p>
Damage caused by improper packaging is the senders responsibility.
</p>
</div>
<div className="info-page__card">
<h2>Return Authorization</h2>
<p>
Contact us before sending any return. We will issue instructions and
a return authorization if the item qualifies.
</p>
</div>
<div className="info-page__card">
<h2>Condition Standards</h2>
<p>
Items must be unused, uninstalled, and include all accessories and
hardware to be considered for a full refund.
</p>
</div>
</InfoPage>
);
}