28 lines
1.2 KiB
TypeScript
28 lines
1.2 KiB
TypeScript
export const personas = [
|
|
["Mint Orphan", "Rock-solid sync, honest pricing, undo on everything."],
|
|
["Dual-Income Couple", "Shared dashboards with privacy controls and expense splitting."],
|
|
["Credit Builder", "Real FICO 8 and spending-linked coaching without referral bias."],
|
|
["Rewards Optimizer", "Card suggestions powered by actual transaction behavior."],
|
|
["DIY Investor", "Portfolio analysis across brokerage, 401k, and IRA accounts."]
|
|
] as const;
|
|
|
|
export const prices = [
|
|
["Free", "$0", "Core tracking for getting started"],
|
|
["Core", "$6.99", "Budgets, net worth, and subscriptions"],
|
|
["Plus", "$11.99", "FICO 8, Ask Aartha, rewards intelligence"],
|
|
["Premium", "$16.99", "Tri-bureau monitoring and dark-web alerts"]
|
|
] as const;
|
|
|
|
export const transactions = [
|
|
["Whole Foods", "Groceries", "-$82.14", "Today"],
|
|
["Blue Bottle", "Dining", "-$6.80", "Yesterday"],
|
|
["Payroll", "Income", "+$4,920.00", "Jul 1"],
|
|
["Spotify", "Subscription", "-$10.99", "Jun 30"]
|
|
] as const;
|
|
|
|
export const goals = [
|
|
{ name: "Emergency fund", saved: 8400, target: 12000, date: "Oct 2026" },
|
|
{ name: "Japan trip", saved: 3100, target: 6000, date: "Feb 2027" },
|
|
{ name: "New home down payment", saved: 42500, target: 90000, date: "Aug 2028" }
|
|
];
|