import React, { useState } from 'react'; const BahamasSimpleTool = () => { // Form state with initial values const [budget, setBudget] = useState('3500000'); const [objective, setObjective] = useState('capital_appreciation'); const [investmentType, setInvestmentType] = useState('real_estate'); const [location, setLocation] = useState('nassau'); const [timeHorizon, setTimeHorizon] = useState('medium'); const [riskTolerance, setRiskTolerance] = useState('medium'); const [downPayment, setDownPayment] = useState('30'); const [interestRate, setInterestRate] = useState('5.5'); // Handle budget input const handleBudgetChange = (e) => { const value = e.target.value.replace(/\D/g, ''); setBudget(value); }; // Calculate monthly payment const monthlyPayment = () => { const principal = parseInt(budget) * (1 - parseInt(downPayment) / 100); const monthlyRate = parseFloat(interestRate) / 100 / 12; const numberOfPayments = 25 * 12; const payment = principal * monthlyRate * Math.pow(1 + monthlyRate, numberOfPayments) / (Math.pow(1 + monthlyRate, numberOfPayments) - 1); return isNaN(payment) ? 0 : payment.toFixed(2); }; // Calculate future value const futureValue = () => { let rate = 0.1; if (investmentType === 'real_estate') rate = 0.12; if (investmentType === 'business') rate = 0.18; if (investmentType === 'financial') rate = 0.07; if (investmentType === 'hospitality') rate = 0.14; let years = 5; if (timeHorizon === 'short') years = 2; if (timeHorizon === 'long') years = 10; return (parseInt(budget) * Math.pow(1 + rate, years)).toFixed(0); }; // Sample recommendations based on criteria const recommendations = [ { title: "Nassau Harbor Development", description: "Luxury residential development on Paradise Island with projected 18% appreciation over 3 years.", investment: "$2.5M", risk: "Medium", return: "15-18% annually", liquidity: "Medium-term hold recommended" }, { title: "Exuma Cays Land Acquisition", description: "Pre-development land in rapidly appreciating Exuma Cays with strong tourism growth projections.", investment: "$3.2M", risk: "Medium-High", return: "20-25% annually", liquidity: "3-7 year investment horizon" } ]; return (

Bahamas Investment Analysis

Personalized opportunities for qualified investors ($2M+ budget)

{/* Left side - Form */}

Investment Parameters

{/* Budget */}
$
{/* Objective */}
{/* Investment Type */}
{/* Location */}
{/* Time Horizon */}
{/* Risk Tolerance */}
{/* Calculator */}

Investment Calculator

setDownPayment(e.target.value.replace(/[^\d]/g, ''))} className="w-full p-2 border rounded" />
setInterestRate(e.target.value.replace(/[^\d.]/g, ''))} className="w-full p-2 border rounded" />

Total Investment:

${parseInt(budget).toLocaleString()}

Monthly Payment:

${parseFloat(monthlyPayment()).toLocaleString()}

Future Value (est.):

${parseInt(futureValue()).toLocaleString()}

{/* Right side - Report */}

Personalized Investment Analysis

Reference: BIA-2025-57891
Generated: {new Date().toLocaleDateString()}
{/* Profile Summary */}

Investment Profile

Investment Budget:

${parseInt(budget).toLocaleString()}

Primary Objective:

{objective === 'capital_appreciation' && 'Capital Appreciation'} {objective === 'income' && 'Income Generation'} {objective === 'tax_advantages' && 'Tax Advantages'} {objective === 'portfolio_diversification' && 'Portfolio Diversification'}

Investment Type:

{investmentType === 'real_estate' && 'Luxury Real Estate'} {investmentType === 'business' && 'Business/Commercial'} {investmentType === 'financial' && 'Financial Instruments'} {investmentType === 'hospitality' && 'Resort/Hospitality'}

Location:

{location === 'nassau' && 'Nassau/New Providence'} {location === 'paradise_island' && 'Paradise Island'} {location === 'exuma' && 'Exuma'} {location === 'abaco' && 'Abaco'} {location === 'eleuthera' && 'Eleuthera'}

{/* Recommendations */}

Recommended Opportunities

{recommendations.map((rec, index) => (

{rec.title}

{rec.investment}

{rec.description}

Risk Profile

{rec.risk}

Expected Return

{rec.return}

Liquidity

{rec.liquidity}

))}
{/* Market Insights */}

Market Insights

Bahamas Investment Climate

The Bahamas continues to be a premier investment destination with no income tax, capital gains tax, inheritance tax, or withholding tax. Recent government initiatives have further streamlined foreign investment processes, particularly in designated investment zones across the Family Islands.

Key Benefits

  • Fast-track residency available for investments exceeding $1.5M
  • No exchange controls for non-residents
  • Protected investor status available through Investment Act
  • Preferential access to additional Caribbean markets
{/* Residency Benefits */}

Residency Benefits

Economic Permanent Residency

Available with $2M+ qualifying investment

  • Permanent residency for applicant and immediate family
  • Minimal physical presence requirement (1 visit annually)
  • Pathway to citizenship eligibility after 10 years
  • Business ownership rights in designated sectors
  • Preferential tax benefits as resident
{/* Glenn Ferguson Contact */}

Expert Consultation

Based on your investment profile, we recommend scheduling a private consultation with Glenn Ferguson, The Bahamas Luxury Authority, to conduct deeper due diligence on your preferred opportunities and arrange site visits.

Contact: Glenn Ferguson

Direct Line: 1-(242)-395-8495

); }; export default BahamasSimpleTool;