<%= link_to root_path, class: 'logo-placeholder h-16 bg-white p-2 flex justify-center' do %> <%= render partial: "avo/partials/logo" %> <% end %>
<%= render Avo::NavigationLinkComponent.new label: 'Get started', path: avo.root_path, active: :exclusive if Rails.env.development? && Avo.configuration.home_path.nil? %> <%= render Avo::NavigationHeadingComponent.new label: t('avo.resources') %>
<% Avo::App.resources_navigation(_current_user).each do |resource| %> <%= render Avo::NavigationLinkComponent.new label: resource.plural_name.humanize, path: resources_path(resource.model_class) %> <% end %> <% sidebar_partials = Avo::App.get_sidebar_partials %> <% if sidebar_partials.present? %> <%= render Avo::NavigationHeadingComponent.new label: t('avo.tools') %> <% sidebar_partials.each do |partial| %> <%= render partial: "/avo/sidebar/items/#{partial}" %> <% end %> <% end %>
<%= render_license_warnings %>