Files
2026-02-10 01:14:19 +00:00

131 lines
4.1 KiB
TypeScript

import InfoPage from "../../../components/InfoPage";
export default function PrivacyPolicyPage() {
return (
<InfoPage
title="Privacy Policy"
subtitle="How we collect, use, and protect your information."
>
<div className="info-page__card">
<h2>Information We Collect</h2>
<p>
We collect information you provide directly, such as name, email,
shipping address, and order details. We also collect limited technical
data like IP address, device type, and browsing activity.
</p>
<p>
If you contact us, we keep communication details to respond and improve
service quality.
</p>
<p>
When you create an account, we store account preferences to speed up
future checkout and support requests.
</p>
</div>
<div className="info-page__card">
<h2>How We Use Information</h2>
<p>
We use your information to process orders, provide customer support,
improve site experience, and communicate updates or promotions you opt
into.
</p>
<p>
Usage data helps us understand which products and pages need clearer
fitment details.
</p>
<p>
We may use aggregated analytics to improve inventory planning and to
ensure popular items stay in stock.
</p>
</div>
<div className="info-page__card">
<h2>Sharing</h2>
<p>
We share data only with trusted providers required to fulfill orders
(payment processors, carriers) and with service partners that help us
operate the site.
</p>
<p>
We do not sell your personal information.
</p>
<p>
Service providers are required to protect your data and use it only
for the services they provide.
</p>
</div>
<div className="info-page__card">
<h2>Data Security</h2>
<p>
We use industry-standard safeguards to protect your data. No system is
perfect, but we continuously improve our protections.
</p>
<p>
Access to customer data is limited to authorized staff and providers.
</p>
<p>
If we become aware of a security incident, we follow applicable
notification requirements.
</p>
</div>
<div className="info-page__card">
<h2>Your Choices</h2>
<p>
You can request access, correction, or deletion of your data, and you
can opt out of marketing communications at any time.
</p>
<p>
To make a request, email us and verify your identity for security.
</p>
<p>
Opt-out links are included in promotional emails for convenience.
</p>
</div>
<div className="info-page__card">
<h2>Retention</h2>
<p>
We retain information only as long as needed for legal, accounting, and
operational purposes.
</p>
<p>
Order and transaction data may be retained longer to meet tax or
regulatory obligations.
</p>
</div>
<div className="info-page__card">
<h2>Updates</h2>
<p>
We may update this policy periodically. The latest version is always
posted on this page.
</p>
<p>
Continued use of the site after changes indicates acceptance of the
updated policy.
</p>
</div>
<div className="info-page__card">
<h2>International Visitors</h2>
<p>
If you access our site from outside our primary operating region, your
information may be processed where our servers or service providers
are located.
</p>
</div>
<div className="info-page__card">
<h2>Contact for Privacy</h2>
<p>
If you have privacy questions, contact support and we will route your
request to the appropriate team.
</p>
</div>
</InfoPage>
);
}