Ignore:
Timestamp:
05/13/26 00:35:13 (8 weeks ago)
Author:
Andrej <asumanovski@…>
Branches:
master
Children:
447c39f
Parents:
a8381b1
Message:

Fixed auth issue

File:
1 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/pages/LandingPage/components/Faq.jsx

    ra8381b1 r42da64d  
    66  AccordionTrigger,
    77} from "@relume_io/relume-ui";
     8
     9import { FaqDefaults } from "./Faq.defaults";
    810
    911export const Faq = (props) => {
     
    1618    button,
    1719  } = {
    18     ...Faq1Defaults,
     20    ...FaqDefaults,
    1921    ...props,
    2022  };
     
    2426      className="px-[5%] py-16 md:py-24 lg:py-28 flex items-center justify-center"
    2527    >
    26       <div className="container max-w-lg">
     28      <div className="mx-auto w-full max-w-2xl">
    2729        <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">
    2931            {heading}
    3032          </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>
    3236        </div>
    3337        <Accordion type="multiple">
     
    4751            {footerHeading}
    4852          </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>
    5056          <div className="mt-6 md:mt-8">
    5157            <Button {...button}>{button.title}</Button>
     
    5662  );
    5763};
    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.