source: frontend/src/pages/LandingPage/components/HowItWorks.defaults.js@ 42da64d

Last change on this file since 42da64d was 42da64d, checked in by Andrej <asumanovski@…>, 8 weeks ago

Fixed auth issue

  • Property mode set to 100644
File size: 758 bytes
Line 
1import { RxChevronRight } from "react-icons/rx";
2
3export const HowItWorksDefaults = {
4 tagline: "How it works",
5 heading: "Log it. Track it. Improve it.",
6 description:
7 "Log what matters to your goals — workouts, weight/calories, budgets, investments, and daily tasks. Trekr gives you a clear view of trends over time so you can stay consistent and keep moving forward.",
8 buttons: [
9 { title: "Start free", variant: "secondary" },
10 {
11 title: "See a quick overview",
12 variant: "link",
13 size: "link",
14 iconRight: <RxChevronRight />,
15 },
16 ],
17 image: {
18 src: "https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80",
19 alt: "Progress and goals overview on a laptop",
20 },
21};
22
Note: See TracBrowser for help on using the repository browser.