website/app/terms/page.tsx

131 lines
6.2 KiB
XML

import FadeIn from "@/components/FadeIn";
const EFFECTIVE_DATE = "2026";
export default function Terms() {
return (
<section className="min-h-screen pt-32 pb-24 px-6">
<div className="max-w-2xl mx-auto">
<FadeIn>
<p
className="text-xs font-semibold uppercase tracking-widest mb-4"
style={{ color: "#3a3a3a", letterSpacing: "0.2em" }}
>
Legal
</p>
<h1
className="text-4xl font-semibold mb-2"
style={{ letterSpacing: "-0.03em" }}
>
Terms of Service
</h1>
<p className="text-xs mb-12" style={{ color: "#3a3a3a" }}>
Effective: {EFFECTIVE_DATE} · Verimund Solutions
</p>
</FadeIn>
<FadeIn delay={0.1}>
<div className="flex flex-col gap-10" style={{ color: "#888888", lineHeight: 1.8 }}>
<div>
<h2 className="text-sm font-semibold mb-2" style={{ color: "#ffffff" }}>1. Acceptance</h2>
<p className="text-sm">
By purchasing or using any Verimund Solutions software, you agree to these Terms of Service.
If you do not agree, do not purchase or use our products.
</p>
</div>
<div>
<h2 className="text-sm font-semibold mb-2" style={{ color: "#ffffff" }}>2. License Grant</h2>
<p className="text-sm">
Upon purchase, Verimund Solutions grants you a non-exclusive, non-transferable license to
use the purchased software on a single machine. The license is bound to the hardware ID
of the machine on which it is first activated. Each license key may only be used on one
device at a time.
</p>
</div>
<div>
<h2 className="text-sm font-semibold mb-2" style={{ color: "#ffffff" }}>3. Prohibited Use</h2>
<p className="text-sm">
You may not: (a) share, resell, or transfer your license key to any third party; (b) reverse
engineer, decompile, or attempt to extract source code from any Verimund Solutions software;
(c) use automated systems to abuse or overload our API or data services; (d) use the software
for any unlawful purpose.
</p>
</div>
<div>
<h2 className="text-sm font-semibold mb-2" style={{ color: "#ffffff" }}>4. Financial Disclaimer</h2>
<p className="text-sm">
Verimund Solutions software, including UIT, is provided for informational purposes only.
All scores, ratings, rankings, and any buy, sell, or hold designations produced by our
software are algorithmic outputs based on publicly available data. Nothing produced by
our software constitutes financial advice, investment advice, or a recommendation to buy,
sell, or hold any security. Past performance of any scoring methodology does not guarantee
future results. You should consult a licensed financial advisor before making any investment
decision. Verimund Solutions accepts no liability for investment decisions made based on
the output of our software.
</p>
</div>
<div>
<h2 className="text-sm font-semibold mb-2" style={{ color: "#ffffff" }}>5. Refund Policy</h2>
<p className="text-sm">
Due to the digital nature of license keys, all sales are final. If you experience a
verified technical issue that prevents the software from functioning on a supported
system and we are unable to resolve it, we will issue a refund at our discretion.
Contact support@verimundsolutions.com with your license key and a description of the issue.
</p>
</div>
<div>
<h2 className="text-sm font-semibold mb-2" style={{ color: "#ffffff" }}>6. License Expiry and Renewal</h2>
<p className="text-sm">
Weekly and monthly licenses expire at the end of their respective period. Verimund Solutions
is not obligated to provide advance notice of expiry, though we may do so at our discretion.
Expired licenses may be renewed by purchasing a new license key.
</p>
</div>
<div>
<h2 className="text-sm font-semibold mb-2" style={{ color: "#ffffff" }}>7. Termination</h2>
<p className="text-sm">
Verimund Solutions reserves the right to revoke any license key without refund if we
determine the license is being used in violation of these Terms, including but not limited
to sharing, resale, or automated abuse of our services.
</p>
</div>
<div>
<h2 className="text-sm font-semibold mb-2" style={{ color: "#ffffff" }}>8. Limitation of Liability</h2>
<p className="text-sm">
To the maximum extent permitted by applicable law, Verimund Solutions shall not be liable
for any indirect, incidental, special, or consequential damages arising from your use of
our software, including any investment losses. Our total liability to you for any claim
shall not exceed the amount you paid for the license key in question.
</p>
</div>
<div>
<h2 className="text-sm font-semibold mb-2" style={{ color: "#ffffff" }}>9. Changes to Terms</h2>
<p className="text-sm">
We may update these Terms at any time. Continued use of the software after updated Terms
are posted constitutes acceptance of the revised Terms.
</p>
</div>
<div>
<h2 className="text-sm font-semibold mb-2" style={{ color: "#ffffff" }}>10. Contact</h2>
<p className="text-sm">
Questions regarding these Terms may be directed to support@verimundsolutions.com.
</p>
</div>
</div>
</FadeIn>
</div>
</section>
);
}