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

{tagline}

{heading}

{description}

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