/* global React, Icons */ // ============================================================ // Legal — Privacy Policy + Refund & Cancellation Policy // Operated by Nestaa · get-resume.com // ============================================================ const LEGAL_BRAND = "get-resume.com"; const LEGAL_ENTITY = "Nestaa"; const LEGAL_EMAIL = "care@get-resume.com"; const LEGAL_UPDATED = "7 June 2026"; const LEGAL_PRICE = (window.Pro && window.Pro.price) || "₹599"; function LegalShell({ title, intro, onHome, onBack, children }) { React.useEffect(() => { window.scrollTo(0, 0); }, []); return (
Legal

{title}

Last updated {LEGAL_UPDATED} · Operated by {LEGAL_ENTITY} ({LEGAL_BRAND})

{intro &&

{intro}

}
{children}
© 2026 {LEGAL_ENTITY}. All rights reserved.
); } function LegalSection({ n, title, children }) { return (

{n}. {title}

{children}
); } function PrivacyPolicy(props) { return (

{LEGAL_BRAND} is an online résumé and cover-letter builder operated by {LEGAL_ENTITY}. You can reach us any time at {LEGAL_EMAIL}.

When you choose to improve a line with AI, only the relevant text is sent to our AI provider to generate a suggestion. We do not use your résumé content to train AI models, and the content is not shared for advertising.

Your résumé data is stored locally in your browser, not on a central profile. We use local storage to remember your work and preferences. We apply reasonable technical and organisational measures to protect information we do process, though no method of transmission or storage is completely secure.

We do not sell your personal information. We share it only with service providers who help us run {LEGAL_BRAND} — such as our payment processor and AI provider — and only to the extent needed to deliver the service, or where required by law.

You can access, correct or delete your résumé content at any time by editing it or clearing your browser's local storage. For questions about data we hold, or to exercise your rights, email {LEGAL_EMAIL}.

{LEGAL_BRAND} is not directed to children under 16, and we do not knowingly collect their information.

We may update this policy from time to time. Material changes will be reflected by the "last updated" date above.

{LEGAL_ENTITY} — {LEGAL_EMAIL}

); } function RefundPolicy(props) { return (

{LEGAL_BRAND} is free to build, edit and copy as text. {LEGAL_BRAND} Pro is an optional subscription billed at {LEGAL_PRICE}/month, charged in advance each billing cycle, which unlocks PDF downloads, unlimited AI writing and all premium templates.

You can cancel any time from the Manage your Pro plan screen (the crown button in the top bar). When you cancel, you keep Pro access until the end of your current billing period, and you will not be charged again.

Email {LEGAL_EMAIL} from the address on your account, with the reason for your request. We aim to respond within 2 business days.

Approved refunds are returned to your original payment method, typically within 5–10 business days depending on your bank or card provider.

{LEGAL_ENTITY} — {LEGAL_EMAIL}

); } function LegalPage({ kind, onHome, onBack }) { return kind === "refund" ? : ; } window.LegalPage = LegalPage;