import React from "react"; export const Features = () => { const features = [ { icon: "๐Ÿ‹๏ธ", title: "Fitness tracking", description: "Log workouts, stay consistent, and see your training trend over time.", }, { icon: "โš–๏ธ", title: "Weight & nutrition", description: "Track daily weigh-ins and calories so you always know whatโ€™s working.", }, { icon: "๐Ÿ’ฐ", title: "Budgeting", description: "Record income and expenses to stay on top of your money without spreadsheets.", }, { icon: "๐Ÿ“ˆ", title: "Investments", description: "Monitor assets and returns to keep a clear view of your portfolio.", }, { icon: "โœ…", title: "Daily discipline", description: "Turn intentions into habits with simple daily tasks and check-ins.", }, { icon: "๐Ÿ“Š", title: "Insights", description: "See patterns across categories so you can make better decisions faster.", }, ]; return (

What you can track

Everything in one dashboard

Trekr brings your health, habits, and money together, so you donโ€™t lose momentum switching tools.

{features.map((feature, index) => (
{feature.icon}

{feature.title}

{feature.description}

))}
); }; export default Features;