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

68 lines
2.8 KiB
TypeScript
Raw Normal View History

export default function EndUserLicenseAgreement() {
return (
<main style={{ maxWidth: 800, margin: '40px auto', padding: '0 24px', fontFamily: 'sans-serif', lineHeight: 1.7 }}>
<h1>End-User License Agreement</h1>
<p><strong>Last updated:</strong> March 17, 2026</p>
<p>
This End-User License Agreement (&ldquo;Agreement&rdquo;) governs your use of the Pulse
internal operations platform (&ldquo;Application&rdquo;) developed and operated by{' '}
<strong>Wulf Consulting, Inc.</strong> (&ldquo;Wulf Consulting&rdquo;).
</p>
<h2>1. Internal Use Only</h2>
<p>
The Application is licensed exclusively for internal use by authorized Wulf Consulting
employees and contractors. Access by unauthorized individuals is strictly prohibited.
</p>
<h2>2. License Grant</h2>
<p>
Wulf Consulting grants authorized users a non-exclusive, non-transferable, revocable
license to access and use the Application solely for internal business operations.
</p>
<h2>3. Third-Party Integrations</h2>
<p>
The Application integrates with QuickBooks Online via the Intuit API. Use of QuickBooks
Online data within the Application is subject to Intuit&apos;s Terms of Service. Users
must not use the Application to access QuickBooks data beyond what is required for
legitimate internal business purposes.
</p>
<h2>4. Restrictions</h2>
<ul>
<li>You may not redistribute, sublicense, or resell access to the Application.</li>
<li>You may not use the Application to process data for third parties outside Wulf Consulting.</li>
<li>You may not reverse-engineer or attempt to extract source code from the Application.</li>
</ul>
<h2>5. Data Handling</h2>
<p>
All financial data accessed through the Application is handled in accordance with our
Privacy Policy. Data is stored on Wulf Consulting&apos;s private infrastructure and is
not shared externally.
</p>
<h2>6. Termination</h2>
<p>
This license is effective until terminated. Wulf Consulting may terminate access at any
time. Upon termination, you must cease all use of the Application.
</p>
<h2>7. Disclaimer of Warranties</h2>
<p>
The Application is provided &ldquo;as is&rdquo; for internal operational use. Wulf
Consulting makes no warranties regarding uptime, accuracy of synced data, or fitness for
any particular purpose beyond internal operations.
</p>
<h2>8. Contact</h2>
<p>
For questions about this Agreement, contact{' '}
<a href="mailto:admin@wulfconsulting.com">admin@wulfconsulting.com</a>.
</p>
</main>
);
}