import { DynamicLayoutRenderer } from "vibentec/renderer" import { LayoutComponentDefinition, LayoutContext } from "vibentec/component-map"; interface BannerNavProps { className?: string; left?: LayoutComponentDefinition[]; center?: LayoutComponentDefinition[]; right?: LayoutComponentDefinition[]; } export default function VtNav({ nodes, context }: { nodes: LayoutComponentDefinition; context: LayoutContext }) { const props = nodes.config as BannerNavProps ?? {} return (
) }