import ButtonLink from "@/components/elements/button-link" import { getButtonAppearance } from "utils/button" const BottomActions = ({ data }) => { return (

{data.title}

{/* Buttons row */}
{data.buttons.map((button) => ( ))}
) } export default BottomActions