Files
confidence-engine/app/terms/page.jsx
T

42 lines
3.0 KiB
React

import React from "react";
import LegalPageLayout from "@/components/legal-page-layout";
export default function TermsPage() {
return (
<LegalPageLayout title="Terms of Use">
<p>Confidence Engine is operated by RDB Solutions Ltd. These Terms govern your use of the service.</p>
<section>
<h2 className="text-xl font-semibold text-gray-900">Eligibility and accounts</h2>
<p>You must be at least 18 years old to use Confidence Engine. Keep access to your email account and sign-in link secure, and provide accurate information when creating or using an account.</p>
</section>
<section>
<h2 className="text-xl font-semibold text-gray-900">Using the service</h2>
<p>Use the service lawfully and responsibly. You are responsible for the information you enter and should avoid entering information about others unless it is necessary and appropriate to do so.</p>
<p>Confidence Engine facilitates understanding; it does not make decisions for you. AI or model-generated analysis may be incomplete, inaccurate, or unsuitable for your circumstances. It is not professional, legal, financial, medical, or other regulated advice. You remain responsible for your decisions and actions.</p>
</section>
<section>
<h2 className="text-xl font-semibold text-gray-900">Availability</h2>
<p>We aim to keep the service available, but availability may vary. Reasoning functionality may occasionally be temporarily unavailable, and we may change, suspend, or withdraw parts of the service when reasonably necessary.</p>
</section>
<section>
<h2 className="text-xl font-semibold text-gray-900">Your information and intellectual property</h2>
<p>You retain responsibility for your underlying scenarios and information. We do not claim ownership of that underlying material merely because you use the service. The Confidence Engine service, branding, and software remain the property of RDB Solutions Ltd. or its licensors.</p>
</section>
<section>
<h2 className="text-xl font-semibold text-gray-900">Ending access and liability</h2>
<p>You may stop using the service and request account deletion at <a className="text-teal-700 underline" href="mailto:data@rdbtech.co.uk">data@rdbtech.co.uk</a>. We may suspend or end access where reasonably necessary, including for misuse or security reasons.</p>
<p>Nothing in these Terms excludes liability that cannot legally be excluded. Subject to that, the service is provided for a controlled early release and we are not liable for indirect loss or for decisions you make using it.</p>
</section>
<section>
<h2 className="text-xl font-semibold text-gray-900">Changes and law</h2>
<p>We may update these Terms by publishing the revised version on this page. These Terms are governed by the law of England and Wales. Questions can be sent to <a className="text-teal-700 underline" href="mailto:data@rdbtech.co.uk">data@rdbtech.co.uk</a>.</p>
</section>
</LegalPageLayout>
);
}