source: frontend/src/pages/LandingPage/components/Who.defaults.jsx@ 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: 760 bytes
Line 
1import { RxChevronRight } from "react-icons/rx";
2
3const WhoDefaults = {
4 tagline: "Who it's for",
5 heading: "Anyone working on themselves",
6 description:
7 "Whether you're training regularly, trying to manage weight and nutrition, organizing your budget, tracking investments, or building discipline — Trekr brings your key habits and metrics together in one place.",
8 buttons: [
9 { title: "Create an account", variant: "secondary" },
10 {
11 title: "Learn more",
12 variant: "link",
13 size: "link",
14 iconRight: <RxChevronRight />,
15 },
16 ],
17 image: {
18 src: "https://images.unsplash.com/photo-1554284126-aa88f22d8b74?auto=format&fit=crop&w=1600&q=80",
19 alt: "Planning habits and routine",
20 },
21};
22
23export { WhoDefaults };
24
25
Note: See TracBrowser for help on using the repository browser.