{% from "./Node.njk" import Node %} {% set variants = { light: "bg-gradient-to-b from-neutral-50 to-neutral-50/50 text-neutral-900", dark: "bg-gradient-to-b from-neutral-800 to-neutral-900 text-neutral-50" } %} {% macro render(node, ctx) %} {% for child in node.children %} {{ Node(child.type, child, ctx) }} {% endfor %} {% endmacro %}