<% content_for :title, 'Map' %>
<%= form_with url: map_path, method: :get do |f| %>
<%= f.label :start_at, class: "text-sm font-semibold" %> <%= f.datetime_local_field :start_at, class: "rounded-md w-full", value: @start_at %>
<%= f.label :end_at, class: "text-sm font-semibold" %> <%= f.datetime_local_field :end_at, class: "rounded-md w-full", value: @end_at %>
<%= f.submit "Search", class: "px-4 py-2 bg-blue-500 text-white rounded-md" %>
<%= link_to "Yesterday", map_path(start_at: Date.yesterday.beginning_of_day, end_at: Date.yesterday.end_of_day), class: "px-4 py-2 bg-gray-500 text-white rounded-md" %>
<%= link_to "Last 7 days", map_path(start_at: 1.week.ago.beginning_of_day, end_at: Time.current.end_of_day), class: "px-4 py-2 bg-gray-500 text-white rounded-md" %>
<%= link_to "Last month", map_path(start_at: 1.month.ago.beginning_of_day, end_at: Time.current.end_of_day), class: "px-4 py-2 bg-gray-500 text-white rounded-md" %>
<% end %>
<%= render 'shared/right_sidebar' %>