diff --git a/app/views/stats/show.html.erb b/app/views/stats/show.html.erb
index 7d7e6a7c..4b85a66d 100644
--- a/app/views/stats/show.html.erb
+++ b/app/views/stats/show.html.erb
@@ -1,5 +1,5 @@
<% content_for :title, "Statistics for #{@year} year" %>
-
+
<%= render partial: 'stats/year', locals: { year: @year, stats: @stats } %>
diff --git a/app/views/trips/edit.html.erb b/app/views/trips/edit.html.erb
index c55fbe26..0fd4f3bc 100644
--- a/app/views/trips/edit.html.erb
+++ b/app/views/trips/edit.html.erb
@@ -1,8 +1,13 @@
-
+
Editing trip
<%= render "form", trip: @trip %>
- <%= link_to "Show this trip", @trip, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
- <%= link_to "Back to trips", trips_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
+
+
+
+ <%= link_to "Show this trip", @trip, class: "btn" %>
+ <%= link_to "Back to trips", trips_path, class: "btn" %>
+
+
diff --git a/app/views/trips/index.html.erb b/app/views/trips/index.html.erb
index bc1bec31..46218299 100644
--- a/app/views/trips/index.html.erb
+++ b/app/views/trips/index.html.erb
@@ -1,9 +1,9 @@
<% content_for :title, 'Trips' %>
-
+
-
Trips
+ Trips
<%= link_to 'New trip', new_trip_path, class: 'btn btn-primary' %>
diff --git a/app/views/trips/new.html.erb b/app/views/trips/new.html.erb
index cd64bfac..defd29c2 100644
--- a/app/views/trips/new.html.erb
+++ b/app/views/trips/new.html.erb
@@ -1,6 +1,6 @@
<% content_for :title, 'New trip' %>
-
+
New trip
<%= render "form", trip: @trip %>
diff --git a/app/views/trips/show.html.erb b/app/views/trips/show.html.erb
index 8339c7ad..1522f356 100644
--- a/app/views/trips/show.html.erb
+++ b/app/views/trips/show.html.erb
@@ -1,6 +1,6 @@
<% content_for :title, @trip.name %>
-
+
<%= @trip.name %>
diff --git a/app/views/visits/index.html.erb b/app/views/visits/index.html.erb
index 556a7fd3..cec01276 100644
--- a/app/views/visits/index.html.erb
+++ b/app/views/visits/index.html.erb
@@ -1,7 +1,8 @@
-
- <% content_for :title, "Visits" %>
+<% content_for :title, "Visits" %>
-
+
+
+
Visits
<%= link_to 'Confirmed', visits_path(status: :confirmed), role: 'tab',