| 1 | export const FaqDefaults = {
|
|---|
| 2 | heading: "Frequently asked questions",
|
|---|
| 3 | description:
|
|---|
| 4 | "Quick answers on how Trekr helps you track self-improvement across multiple areas — in one place.",
|
|---|
| 5 | questions: [
|
|---|
| 6 | {
|
|---|
| 7 | title: "What can I track in Trekr?",
|
|---|
| 8 | answer:
|
|---|
| 9 | "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).",
|
|---|
| 10 | },
|
|---|
| 11 | {
|
|---|
| 12 | title: "Do I need multiple apps to do all this?",
|
|---|
| 13 | answer:
|
|---|
| 14 | "No — Trekr is designed to unify the most important self-improvement categories so you can get a clear overview without switching between tools.",
|
|---|
| 15 | },
|
|---|
| 16 | {
|
|---|
| 17 | title: "How do goals and progress tracking work?",
|
|---|
| 18 | answer:
|
|---|
| 19 | "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.",
|
|---|
| 20 | },
|
|---|
| 21 | {
|
|---|
| 22 | title: "Where is my data stored?",
|
|---|
| 23 | answer:
|
|---|
| 24 | "Your entries are stored in a database and linked to your user profile so you can track progress consistently over time.",
|
|---|
| 25 | },
|
|---|
| 26 | {
|
|---|
| 27 | title: "Is Trekr a mobile app?",
|
|---|
| 28 | answer:
|
|---|
| 29 | "Right now Trekr is a web app. The goal is a fast, simple experience on both mobile and desktop in the browser.",
|
|---|
| 30 | },
|
|---|
| 31 | ],
|
|---|
| 32 | footerHeading: "Still have questions?",
|
|---|
| 33 | footerDescription: "Send us a message and we’ll help you get started.",
|
|---|
| 34 | button: {
|
|---|
| 35 | title: "Contact",
|
|---|
| 36 | variant: "secondary",
|
|---|
| 37 | },
|
|---|
| 38 | };
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|