wulf-pulse/app/legal/privacy/page.tsx

50 lines
2 KiB
TypeScript
Raw Normal View History

export default function PrivacyPolicy() {
return (
<main style={{ maxWidth: 800, margin: '40px auto', padding: '0 24px', fontFamily: 'sans-serif', lineHeight: 1.7 }}>
<h1>Privacy Policy</h1>
<p><strong>Last updated:</strong> March 17, 2026</p>
<p>
Pulse is an internal operations platform operated by <strong>Wulf Consulting, Inc.</strong>
(&ldquo;Wulf Consulting&rdquo;, &ldquo;we&rdquo;, &ldquo;us&rdquo;). This application is for
internal business use only and is not available to the general public.
</p>
<h2>Information We Access</h2>
<p>
Pulse connects to QuickBooks Online via the Intuit OAuth 2.0 API to read financial data
including invoices, payments, deposits, transactions, and financial reports. This data is
accessed solely for internal reporting and business operations purposes.
</p>
<h2>How We Use Your Data</h2>
<ul>
<li>Financial data is stored in a private, self-hosted PostgreSQL database.</li>
<li>Data is used exclusively for internal dashboards and reporting.</li>
<li>No financial data is shared with third parties.</li>
<li>No data is sold or used for advertising.</li>
</ul>
<h2>Data Storage and Security</h2>
<p>
All data is stored on servers controlled by Wulf Consulting. Access is restricted to
authorized Wulf Consulting staff only. OAuth tokens are stored securely and are never
exposed externally.
</p>
<h2>Data Retention</h2>
<p>
Synced financial data is retained for operational reporting purposes. OAuth tokens are
refreshed automatically and can be revoked at any time via the QuickBooks Online app
authorization settings.
</p>
<h2>Contact</h2>
<p>
For questions about this policy, contact <strong>Wulf Consulting, Inc.</strong> at{' '}
<a href="mailto:admin@wulfconsulting.com">admin@wulfconsulting.com</a>.
</p>
</main>
);
}