47 lines
3.4 KiB
React
47 lines
3.4 KiB
React
import React from "react";
|
|
import LegalPageLayout from "@/components/legal-page-layout";
|
|
|
|
export default function PrivacyPage() {
|
|
return (
|
|
<LegalPageLayout title="Privacy Policy">
|
|
<p>This policy explains how Confidence Engine handles information when you use the service.</p>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-gray-900">Who is responsible</h2>
|
|
<p>Confidence Engine is operated by RDB Solutions Ltd., Palmeira Avenue Mansions, 19 Church Road, Hove, East Sussex, England, BN3 2FA. For privacy questions or deletion requests, contact <a className="text-teal-700 underline" href="mailto:data@rdbtech.co.uk">data@rdbtech.co.uk</a>.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-gray-900">Information we process</h2>
|
|
<p>We process your account email and authentication information, together with information you choose to enter into an investigation. This can include scenario descriptions, reconstructed SituationGraph material, Current Understanding, Open Questions, answers, Findings, Contributions, reports, and revision and timestamp metadata.</p>
|
|
<p>Please do not enter personal information that you do not need to provide, especially unnecessary information about other people.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-gray-900">Why we use it</h2>
|
|
<p>We use account information to provide secure access to your account. We use investigation information to save your work, let you return to it, and provide the reasoning features you request. Confidence Engine supports your understanding; it does not make decisions for you.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-gray-900">Storage and reasoning</h2>
|
|
<p>Authentication and investigation persistence are operated through our self-hosted Supabase and PostgreSQL infrastructure. Reasoning requests are processed through private Ollama/Qwen infrastructure used by the service. We also use functional browser storage for authentication sessions and interface preferences; see our Cookie Policy for details.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-gray-900">Retention and deletion</h2>
|
|
<p>Account and investigation information is retained while your account remains active. After 18 months without activity, we will contact you before deletion; if inactivity continues, account and investigation information may then be automatically deleted. You may request deletion at <a className="text-teal-700 underline" href="mailto:data@rdbtech.co.uk">data@rdbtech.co.uk</a>.</p>
|
|
<p>Deleted information may remain temporarily in rotating backups until those backups expire.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-gray-900">Security and your rights</h2>
|
|
<p>We use access controls and technical measures appropriate to operating the service. You can contact us about access, correction, deletion, or other data-protection requests. You may also complain to the UK Information Commissioner's Office.</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 className="text-xl font-semibold text-gray-900">Age and changes</h2>
|
|
<p>Confidence Engine is for people aged 18 and over. We may update this policy as the service develops; the current version will be published on this page.</p>
|
|
</section>
|
|
</LegalPageLayout>
|
|
);
|
|
} |