import { Button } from "@relume_io/relume-ui"; import { RxChevronRight } from "react-icons/rx"; export const Who = (props) => { const { tagline, heading, description, buttons, image } = { ...WhoDefaults, ...props, }; return (
{image.alt}

{tagline}

{heading}

{description}

{buttons.map((button, index) => ( ))}
); }; export const WhoDefaults = { tagline: "Who it's for", heading: "Anyone working on themselves", description: "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.", buttons: [ { title: "Create an account", variant: "secondary" }, { title: "Learn more", variant: "link", size: "link", iconRight: , }, ], image: { src: "https://images.unsplash.com/photo-1554284126-aa88f22d8b74?auto=format&fit=crop&w=1600&q=80", alt: "Planning habits and routine", }, };