The BookkeepingUpsellBar component renders a promotional banner encouraging users to order bookkeeping services. It displays a “Need help with your books?” message with a “Schedule a demo” call-to-action.
The CTA can be configured as either a click handler or a link. If neither onClick nor href is provided, no CTA button is rendered.
import { BookkeepingUpsellBar } from '@layerfi/components'
{/* With click handler */}
<BookkeepingUpsellBar
onClick={() => openBookkeepingModal()}
/>
{/* With external link */}
<BookkeepingUpsellBar
href="https://example.com/bookkeeping"
/>
Properties
Click handler for the “Schedule a demo” button. When provided, renders a button that triggers this callback. Takes precedence over href.
URL for the “Schedule a demo” link. When provided (and onClick is not set), renders a link that opens in a new tab.