<%= render partial: "avo/partials/logo" %>
<%= 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'), icon: svg('resources-icon') %> <% Avo::App.resources_navigation(_current_user).sort_by { |r| r.navigation_label }.each do |resource| %> <%= render Avo::NavigationLinkComponent.new label: resource.navigation_label, path: resources_path(resource: resource) %> <% end %>
<% tools = Avo::App.get_sidebar_partials %> <% if tools.present? %> <%= render Avo::NavigationHeadingComponent.new label: t('avo.tools'), icon: svg('tools-icon') %> <% tools.each do |partial| %> <%= render partial: "/avo/sidebar/items/#{partial}" %> <% end %> <% end %>
<%= render_license_warnings %> <%= render Avo::SidebarProfileComponent.new user: _current_user %>