Initial commit: redefined-designs storefront

This commit is contained in:
2026-08-13 21:07:54 +00:00
commit 9be4986dd3
38 changed files with 2121 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
import { Typography, Card } from 'antd';
const { Title, Paragraph } = Typography;
export default function PrivacyPolicy() {
return (
<div style={{ maxWidth: 720, margin: '48px auto', padding: '0 16px' }}>
<Card>
<Title level={2}>Privacy Policy</Title>
<Paragraph type="secondary">
This is a general-purpose starter policy. Have it reviewed by a lawyer before relying on it
it is not legal advice and may not reflect your specific obligations.
</Paragraph>
<Title level={4}>What we collect</Title>
<Paragraph>
If you create an account, we collect your email address, name (optional), and a securely
hashed password. If you make a purchase, we record the item, amount, and payment processor
transaction reference. We do not store your card or PayPal login details payment is handled
entirely by our payment processor.
</Paragraph>
<Title level={4}>Marketing emails</Title>
<Paragraph>
We only send you marketing emails if you explicitly opt in during signup or in your account
settings. You can withdraw consent at any time from your account page, or via the unsubscribe
link included in every marketing email no login required.
</Paragraph>
<Title level={4}>Your rights</Title>
<Paragraph>
You may request a copy of your data ("Download my data" in your account page), or delete your
account entirely at any time. Deleting your account removes your personal information; past
order records are retained in anonymized form for accounting purposes.
</Paragraph>
<Title level={4}>Data retention</Title>
<Paragraph>
Account data is retained until you delete your account. Order records are retained as required
for financial recordkeeping, disconnected from your identity upon account deletion.
</Paragraph>
<Title level={4}>Contact</Title>
<Paragraph>
For privacy questions or data requests, contact us at the email address listed on this site.
</Paragraph>
</Card>
</div>
);
}