import { motion } from "framer-motion";
import { ArrowLeft, ExternalLink, TrendingUp, DollarSign, BarChart3, Search, Figma, Zap, Shield, Settings, Rocket, } from "lucide-react";
import { Navigation } from "../components/Navigation";
import { Footer } from "../components/Footer";
import { Button } from "../components/ui/button";
import { GridPattern } from "../components/GridPattern";
import { ImageWithFallback } from "../components/figma/ImageWithFallback";
import { navigateTo } from "../App";
// import tanamiImage from 'figma:asset/299b700a63c03206afc0281d0a16b76f903195f0.png';
const projectMetrics = [
{
icon: ,
label: "Portfolio Growth",
value: "+185%",
description: "Average user portfolio performance"
},
{
icon: ,
label: "Assets Under Management",
value: "$50M+",
description: "Total managed through platform"
},
{
icon: ,
label: "User Engagement",
value: "+250%",
description: "Increase in daily active users"
}
];
const keyFeatures = [
{
title: "Real-Time Investment Tracking",
description: "Monitor your portfolio performance with live market data and instant updates on all your investments."
},
{
title: "Portfolio Management Tools",
description: "Advanced tools for portfolio optimization, risk assessment, and strategic asset allocation."
},
{
title: "Market Analytics Dashboard",
description: "Comprehensive market insights and analytics to make informed investment decisions."
},
{
title: "Automated Investment Strategies",
description: "Smart automation features that help optimize your investment strategy based on market conditions."
},
{
title: "Risk Management System",
description: "Advanced risk assessment tools to help you understand and manage investment risks effectively."
},
{
title: "Financial Goal Planning",
description: "Set and track financial goals with personalized investment recommendations and progress monitoring."
}
];
const processPhases = [
{
phase: "Phase 1",
title: "Market Research & Financial Analysis",
icon: ,
description: "Conducted comprehensive research on investment platforms and financial market requirements.",
details: "Analyzed current fintech landscape, regulatory requirements, and user investment behaviors. Identified key opportunities for innovation in portfolio management and real-time tracking capabilities."
},
{
phase: "Phase 2",
title: "Financial UX Design",
icon: ,
description: "Created intuitive financial interfaces focused on clarity, trust, and ease of investment management.",
details: "Designed user-centric dashboards with emphasis on data visualization and financial transparency. Built interactive prototypes for investment workflows and portfolio management features."
},
{
phase: "Phase 3",
title: "Platform Development",
icon: ,
description: "Built robust investment platform with real-time data processing and portfolio management capabilities.",
details: "Implemented scalable architecture with real-time market data integration, automated investment algorithms, and comprehensive portfolio analytics. Developed secure trading and transaction systems."
},
{
phase: "Phase 4",
title: "Security & Compliance Testing",
icon: ,
description: "Implemented comprehensive financial security measures and regulatory compliance protocols.",
details: "Conducted thorough security audits focusing on financial data protection and transaction security. Ensured compliance with financial regulations, KYC requirements, and data privacy standards."
},
{
phase: "Phase 5",
title: "Financial Analytics & DevOps",
icon: ,
description: "Deployed advanced analytics systems with automated deployment and monitoring for financial operations.",
details: "Established real-time financial data processing pipelines and investment performance monitoring. Implemented automated backup systems and disaster recovery for financial data protection."
},
{
phase: "Phase 6",
title: "Launch & Wealth Management",
icon: ,
description: "Executed successful platform launch with focus on investor onboarding and wealth management services.",
details: "Coordinated launch strategy targeting individual investors and wealth management professionals. Established customer support for investment guidance and ongoing platform optimization."
}
];
export const TanamiProject = () => {
return (
{/* Hero Section */}
{/* Back Button */}
navigateTo('/')}
className="text-muted-foreground hover:text-foreground flex items-center gap-2 px-0"
>
Back to Case Studies
{/* Content */}
Transform The Way You Grow Your Money with{" "}
Tanami Capital
Real-Time Investment Tracking, Seamless Portfolio Management
Remove the guesswork from growing your finances. Real-time investment tracking and easy portfolio management put you effortlessly in control of your assets.
+185% Portfolio Growth
FinTech
Investment Platform
Wealth Management
{/* Project Image */}
{/* */}
{/* Metrics Section */}
{projectMetrics.map((metric, index) => (
{metric.icon}
{metric.value}
{metric.label}
{metric.description}
))}
{/* Main Content Section */}
Innovate the Future of Investment with Tanami Capital
Revolutionised Tanami Capital into a powerful, intuitive platform that streamlines portfolio management and empowers users to grow their wealth effortlessly.
{/* Key Features */}
Key Features & Capabilities
{keyFeatures.map((feature, index) => (
{feature.title}
{feature.description}
))}
{/* Project Delivery Process */}
Project Delivery Lifecycle
{/* Continuous background line */}
{/* Animated line overlay */}
{processPhases.map((phase, index) => (
{/* Mobile connection line */}
{index < processPhases.length - 1 && (
)}
{/* Phase indicator with fixed width container */}
{/* Icon with background to mask the line */}
{/* Icon glow effect */}
{/* Connection dot for timeline */}
{index + 1}
{phase.phase}
{phase.title}
{/* Content with consistent left alignment */}
{phase.description}
{phase.details}
))}
{/* CTA Section */}
Ready to Build Your Next FinTech Platform?
Let's create a revolutionary investment platform together. From concept to launch, we'll help you build a platform that transforms how people manage and grow their wealth.
navigateTo('/start-a-project')}
>
Start Your Project
navigateTo('/case-studies')}
>
View More Case Studies
);
};