Using code from here: https://statamic.dev/knowledge-base/recursive-nav-examples#footer-nav-example
<div class="flex">
{{ nav }}
{{ if depth == 1 }}
<div class="mx-10">
<h3 class="mb-2">{{ title }}{{ partial:brand-svg }}</h3>{{# this partial stops the elseif depth 2 stuff rendering #}}
{{ if children }}
<ul>{{ *recursive children* }}</ul>
{{ /if }}
</div>
{{ elseif depth == 2 }}
<li class="my-1">
<a href="{{ url }}">{{ title }}</a>
</li>
{{ /if }}
{{ /nav }}
</div>