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

119 lines
3.7 KiB
TypeScript

import InfoPage from "../../../components/InfoPage";
export default function FaqPage() {
return (
<InfoPage
title="FAQ"
subtitle="Quick answers to the most common questions."
>
<div className="info-page__card">
<h2>Fitment Accuracy</h2>
<p>
We build listings around verified fitment data and real-world installs.
If you are unsure, contact us with your full vehicle details before
ordering.
</p>
<p>
Providing wheel offset, tire size, and suspension details helps us
confirm compatibility and avoid unnecessary delays.
</p>
<p>
When a product has known caveats, we call them out in the listing so
you can make a confident decision.
</p>
</div>
<div className="info-page__card">
<h2>Order Processing</h2>
<p>
Most in-stock orders ship within 1 to 2 business days. Custom or
special-order items can take longer; estimated lead times are shown on
the product page.
</p>
<p>
If an item goes on backorder, we notify you immediately with options
for substitution or cancellation.
</p>
<p>
We do not drop-ship from unknown sources. If we cannot stand behind the
supply chain, we do not sell it.
</p>
</div>
<div className="info-page__card">
<h2>Shipping</h2>
<p>
You will receive tracking as soon as your order leaves our warehouse.
Delivery speed depends on the carrier and destination.
</p>
<p>
Large items may ship freight and require a delivery appointment. We
will coordinate timing with you.
</p>
<p>
If your area has limited freight access, tell us early and we will
propose the best alternative.
</p>
</div>
<div className="info-page__card">
<h2>Returns</h2>
<p>
Returns are accepted on eligible items in new condition within the
return window described in our Refund Policy.
</p>
<p>
We recommend test-fitting parts without permanent modifications to
preserve return eligibility.
</p>
<p>
If you are unsure whether an item is returnable, we will confirm before
you ship it back.
</p>
</div>
<div className="info-page__card">
<h2>Fitment Notes</h2>
<p>
Some upgrades require additional parts or tuning. When applicable, we
note these requirements on the product page.
</p>
<p>
If you already have a lift or offset wheels, we can help verify the
right combination for safe clearance.
</p>
</div>
<div className="info-page__card">
<h2>Warranty Support</h2>
<p>
Warranty coverage is handled through the manufacturer. We assist with
documentation and claim submission to keep the process smooth.
</p>
<p>
We stay in the loop so you are not bouncing between vendors.
</p>
</div>
<div className="info-page__card">
<h2>Local Installers</h2>
<p>
If you need a trusted shop, we can recommend installers based on your
location and the type of work required.
</p>
</div>
<div className="info-page__card">
<h2>Compatibility Checks</h2>
<p>
We can verify whether a part fits your trim level, drivetrain, and
model year before you purchase.
</p>
<p>
The more detail you provide, the more precise the answer.
</p>
</div>
</InfoPage>
);
}