import { Button } from "@relume_io/relume-ui"; import { HowItWorksDefaults } from "./HowItWorks.defaults.jsx"; export const HowItWorks = (props) => { const { tagline, heading, description, buttons, image } = { ...HowItWorksDefaults, ...props, }; return (

{tagline}

{heading}

{description}

{buttons.map((button, index) => ( ))}
{image.alt}
); };