import { personas, prices } from "@/lib/data"; import { Card } from "@/components/ui/Card"; import { Chip } from "@/components/ui/Chip"; import { SectionHeading } from "@/components/ui/SectionHeading"; import { ButtonLink } from "@/components/ui/Button"; const features = [ ["Flex budgeting", "Speedometer-style daily allowance after fixed expenses and goals."], ["Credit clarity", "Real FICO 8 factors translated into actions users can actually take."], ["Rewards intelligence", "Recommend the best card for each purchase based on live transactions."], ["Shared finances", "Partner and roommate views with privacy-aware collaboration."] ]; export function FeatureGrid() { return (
{features.map(([title, body]) => (

{title}

{body}

))}
); } export function PersonaGrid() { return (
{personas.map(([name, body], index) => ( {String(index + 1).padStart(2, "0")}

{name}

{body}

))}
); } export function Pricing() { return (
{prices.map(([name, price, body]) => ( {name === "Plus" ? Most popular : null}

{name}

{price}

{body}

Preview tier
))}
); } export function CTA() { return (

Ready for a component-based handoff.

This prototype is structured for product review today and engineering continuation tomorrow.

Explore app prototype
); }