Adds the consolidated Customer Policies doc covering customer service contact, return / refund / dispute policy, cancellation policy, U.S. legal and export restrictions, and promotional terms. Companion /contact page surfaces the business phone (470) 949-4131 alongside the support/sales/billing/security inboxes and target response SLAs. /promotions page exists as a stub so the cross-reference in Policies §6.2 is live; it states no promotions are currently active and will be appended to when offers run. Refresh Privacy and Terms footers to point at /contact + /policies and drop the stale hello@ mailto. Landing footer now exposes Privacy / Terms / Policies / Contact links so Stripe's site review can reach them in one hop from the marketing surface. Mailing address is deferred until a P.O. Box is set up — left as an in-source TODO and displayed publicly as "available on request" so we don't ship a placeholder address. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
45 lines
2.9 KiB
TypeScript
45 lines
2.9 KiB
TypeScript
import { Link } from 'react-router-dom'
|
|
import { PageMeta } from '@/components/common/PageMeta'
|
|
|
|
export default function PrivacyPage() {
|
|
return (
|
|
<>
|
|
<PageMeta title="Privacy Policy" description="ResolutionFlow Privacy Policy" />
|
|
<div className="min-h-screen bg-background text-foreground">
|
|
<div className="mx-auto max-w-3xl px-6 py-16">
|
|
<Link to="/landing" className="text-sm text-muted-foreground hover:text-foreground mb-8 inline-block">← Back to home</Link>
|
|
<h1 className="text-3xl font-bold font-heading mb-8">Privacy Policy</h1>
|
|
<p className="text-muted-foreground mb-6">Last updated: March 21, 2026</p>
|
|
|
|
<div className="space-y-6 text-muted-foreground leading-relaxed">
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-foreground mb-3">1. Information We Collect</h2>
|
|
<p>When you use ResolutionFlow, we collect information you provide directly: your name, email address, and account credentials. We also collect usage data including session logs, flow configurations, and troubleshooting documentation generated through the platform.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-foreground mb-3">2. How We Use Your Information</h2>
|
|
<p>We use your information to provide and improve ResolutionFlow, including: operating your account, generating documentation from troubleshooting sessions, providing AI-powered guidance through FlowPilot, and communicating with you about the service.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-foreground mb-3">3. Data Storage & Security</h2>
|
|
<p>Your data is stored securely using industry-standard encryption. PSA credentials (ConnectWise, Atera, Syncro) are encrypted at rest. We do not sell your data to third parties.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-foreground mb-3">4. AI & Data Processing</h2>
|
|
<p>FlowPilot uses AI models to provide troubleshooting guidance. Session data sent to AI providers is used only for generating responses within your session and is not used to train AI models.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-foreground mb-3">5. Contact</h2>
|
|
<p>Questions about this policy? Email <a href="mailto:security@resolutionflow.com" className="text-primary hover:underline">security@resolutionflow.com</a> or visit our <Link to="/contact" className="text-primary hover:underline">contact page</Link>. Billing, cancellation, refund, and promotional terms are governed by our <Link to="/policies" className="text-primary hover:underline">Customer Policies</Link>.</p>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
}
|