Changeset 42da64d for frontend/src/pages/LandingPage/components/Faq.jsx
- Timestamp:
- 05/13/26 00:35:13 (8 weeks ago)
- Branches:
- master
- Children:
- 447c39f
- Parents:
- a8381b1
- File:
-
- 1 edited
-
frontend/src/pages/LandingPage/components/Faq.jsx (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/pages/LandingPage/components/Faq.jsx
ra8381b1 r42da64d 6 6 AccordionTrigger, 7 7 } from "@relume_io/relume-ui"; 8 9 import { FaqDefaults } from "./Faq.defaults"; 8 10 9 11 export const Faq = (props) => { … … 16 18 button, 17 19 } = { 18 ...Faq 1Defaults,20 ...FaqDefaults, 19 21 ...props, 20 22 }; … … 24 26 className="px-[5%] py-16 md:py-24 lg:py-28 flex items-center justify-center" 25 27 > 26 <div className=" container max-w-lg">28 <div className="mx-auto w-full max-w-2xl"> 27 29 <div className="rb-12 mb-12 text-center md:mb-18 lg:mb-20"> 28 <h2 className="rb-5 mb-5 text-5xl font-bold md:mb-6 md:text-7xl lg:text-8xl">30 <h2 className="rb-5 mb-5 font-bold text-4xl sm:text-5xl md:mb-6 md:text-6xl lg:text-7xl leading-tight"> 29 31 {heading} 30 32 </h2> 31 <p className="md:text-md">{description}</p> 33 <p className="text-sm sm:text-base md:text-lg opacity-80"> 34 {description} 35 </p> 32 36 </div> 33 37 <Accordion type="multiple"> … … 47 51 {footerHeading} 48 52 </h4> 49 <p className="md:text-md">{footerDescription}</p> 53 <p className="text-sm sm:text-base md:text-lg opacity-80"> 54 {footerDescription} 55 </p> 50 56 <div className="mt-6 md:mt-8"> 51 57 <Button {...button}>{button.title}</Button> … … 56 62 ); 57 63 }; 58 59 export const Faq1Defaults = {60 heading: "Frequently asked questions",61 description:62 "Quick answers on how Trekr helps you track self-improvement across multiple areas — in one place.",63 questions: [64 {65 title: "What can I track in Trekr?",66 answer:67 "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).",68 },69 {70 title: "Do I need multiple apps to do all this?",71 answer:72 "No — Trekr is designed to unify the most important self-improvement categories so you can get a clear overview without switching between tools.",73 },74 {75 title: "How do goals and progress tracking work?",76 answer:77 "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.",78 },79 {80 title: "Where is my data stored?",81 answer:82 "Your entries are stored in a database and linked to your user profile so you can track progress consistently over time.",83 },84 {85 title: "Is Trekr a mobile app?",86 answer:87 "Right now Trekr is a web app. The goal is a fast, simple experience on both mobile and desktop in the browser.",88 },89 ],90 footerHeading: "Still have questions?",91 footerDescription: "Send us a message and we’ll help you get started.",92 button: {93 title: "Contact",94 variant: "secondary",95 },96 };
Note:
See TracChangeset
for help on using the changeset viewer.
