import { useEffect } from "react"; import Navigation from "@/components/landing/Navigation"; import Footer from "@/components/landing/Footer"; import PageEnter from "@/components/ui/page-enter"; import { fadeUp, staggerContainer, cardHover, pageEnterMotion } from "@/components/motion/variants"; import { motion, useReducedMotion } from "framer-motion"; const termsCards = [ { title: "Acceptance of Terms", body: "By accessing QuantFortune you agree to these Terms, our Privacy Policy, and Disclosures. Do not use the service if you disagree.", }, { title: "No Investment Advice", body: "Content and tools are for information and execution support only. We do not provide personalized recommendations or portfolio advice.", }, { title: "Eligibility & Accounts", body: "You are responsible for keeping credentials secure and ensuring you are authorized to operate linked brokerage accounts.", }, { title: "Execution & Data", body: "Broker connectivity, pricing, and P&L are subject to third-party APIs. Interruptions may occur; verify before acting.", }, { title: "Liability", body: "You bear market, execution, and connectivity risks. QuantFortune is not liable for losses arising from use of the service.", }, ]; const timeline = [ { label: "Use of Service", text: "Use only for lawful purposes and comply with broker and exchange rules." }, { label: "Changes", text: "We may update terms, features, and availability; continued use implies acceptance." }, { label: "Termination", text: "We may suspend or terminate access for misuse, fraud, or regulatory requirements." }, { label: "Governing Law", text: "These terms are governed by Indian law; disputes subject to appropriate jurisdiction." }, ]; export default function Terms() { const prefersReducedMotion = useReducedMotion(); useEffect(() => { document.title = "Terms of Service | QuantFortune"; }, []); return (
Terms of Service Clear obligations, limited scope, and disciplined usage expectations.
{termsCards.map((card) => (

{card.title}

{card.body}

))}
Key Clauses
{timeline.map((item, idx) => (

{item.label}

{item.text}

))}
Last updated: Jan 2026 ยท Subject to change with product or regulatory updates.
Compliance note: Use at your discretion; verify execution and data before acting.
); }