import { Button, Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from "@relume_io/relume-ui"; export const Faq = (props) => { const { heading, description, questions, footerHeading, footerDescription, button, } = { ...Faq1Defaults, ...props, }; return (

{heading}

{description}

{questions.map((question, index) => ( {question.title} {question.answer} ))}

{footerHeading}

{footerDescription}

); }; export const Faq1Defaults = { heading: "Frequently asked questions", description: "Quick answers on how Trekr helps you track self-improvement across multiple areas — in one place.", questions: [ { title: "What can I track in Trekr?", answer: "Workouts (type and duration), weight & nutrition (goal, calories), finances & budgeting (income and expenses), investing (portfolio and returns), and discipline (daily tasks you can check off).", }, { title: "Do I need multiple apps to do all this?", answer: "No — Trekr is designed to unify the most important self-improvement categories so you can get a clear overview without switching between tools.", }, { title: "How do goals and progress tracking work?", answer: "You set a goal (for example: target weight or monthly budget), then log daily/weekly data. Trekr helps you see where you are vs. the goal and how you're trending over time.", }, { title: "Where is my data stored?", answer: "Your entries are stored in a database and linked to your user profile so you can track progress consistently over time.", }, { title: "Is Trekr a mobile app?", answer: "Right now Trekr is a web app. The goal is a fast, simple experience on both mobile and desktop in the browser.", }, ], footerHeading: "Still have questions?", footerDescription: "Send us a message and we’ll help you get started.", button: { title: "Contact", variant: "secondary", }, };