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 philosophyPoints = [ { title: "Evidence first", body: "We prioritize rules backed by data, not noise. Every decision is codified, tested, and repeatable.", }, { title: "Risk discipline", body: "Position sizing and rebalancing are built to protect the downside while staying exposed to compounding.", }, { title: "Transparency", body: "Clear logic, consistent reporting, and no opaque black boxes. You always know what drives your portfolio.", }, ]; const buildItems = [ { title: "Systematic Strategies", body: "Rule-based portfolios like Golden Nifty, built to stay patient through cycles.", }, { title: "Execution Guardrails", body: "Eligibility checks, market state awareness, and heartbeat monitoring keep runs healthy.", }, { title: "Live Monitoring", body: "Positions, P&L, and state timelines stay in sync with your broker for real-time clarity.", }, ]; const trustTimeline = [ { label: "Design", text: "Every strategy starts with a hypothesis, validation, and risk definition." }, { label: "Simulate", text: "We test against varied regimes to avoid overfitting and fragility." }, { label: "Deploy", text: "Live checks, session health, and incremental rollouts keep execution safe." }, { label: "Adapt", text: "Feedback loops improve sizing, cadence, and monitoring without changing core rules." }, ]; export default function About() { const prefersReducedMotion = useReducedMotion(); return (
About QuantFortune Systematic investing, built for long-term clarity.
Philosophy {philosophyPoints.map((item) => (

{item.title}

{item.body}

))}
What We Build {buildItems.map((item) => (

{item.title}

{item.body}

))}
Trust & Discipline
{trustTimeline.map((item, idx) => (

{item.label}

{item.text}

))}
); }