"use client" import { Button, clx } from "@medusajs/ui" import { LayoutComponentDefinition, LayoutContext, } from "@vibentec/component-map" export function BearCtaBanner({ nodes, context, }: { nodes: LayoutComponentDefinition context: LayoutContext }) { const props = nodes.config ?? {} return (

{props.tagText ?? "So einfach kann Frühstück sein – mit unseren leckeren Overnight Oats."}

{props.titleText ?? "breakfast made easy."}

) }