diff --git a/app/views/accounts/_chart_loader.html.erb b/app/views/accounts/_chart_loader.html.erb
deleted file mode 100644
index b080329f..00000000
--- a/app/views/accounts/_chart_loader.html.erb
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
diff --git a/app/views/accounts/show/_loading.html.erb b/app/views/accounts/show/_loading.html.erb
deleted file mode 100644
index 26167412..00000000
--- a/app/views/accounts/show/_loading.html.erb
+++ /dev/null
@@ -1,3 +0,0 @@
-
diff --git a/app/views/accounts/show/_tab.html.erb b/app/views/accounts/show/_tab.html.erb
deleted file mode 100644
index 000f9743..00000000
--- a/app/views/accounts/show/_tab.html.erb
+++ /dev/null
@@ -1,9 +0,0 @@
-<%# locals: (account:, key:, is_selected:) %>
-
-<%= link_to key.titleize,
- account_path(account, tab: key),
- data: { turbo: false },
- class: [
- "px-2 py-1.5 rounded-md border border-transparent",
- "bg-container shadow-xs border-alpha-black-50": is_selected
- ] %>
diff --git a/app/views/accounts/show/_tabs.html.erb b/app/views/accounts/show/_tabs.html.erb
deleted file mode 100644
index 169fe0d4..00000000
--- a/app/views/accounts/show/_tabs.html.erb
+++ /dev/null
@@ -1,17 +0,0 @@
-<%# locals: (account:, tabs:) %>
-
-<% active_tab = tabs.find { |tab| tab[:key] == params[:tab] } || tabs.first %>
-
-<%= render TabsComponent.new(active_tab: active_tab[:key], url_param_key: "tab") do |tabs_container| %>
- <% tabs_container.with_nav(classes: "max-w-fit") do |nav| %>
- <% tabs.each do |tab| %>
- <% nav.with_btn(id: tab[:key], label: tab[:key].humanize, classes: "px-6") %>
- <% end %>
- <% end %>
-
- <% tabs.each do |tab| %>
- <% tabs_container.with_panel(tab_id: tab[:key]) do %>
- <%= tab[:contents] %>
- <% end %>
- <% end %>
-<% end %>
diff --git a/app/views/accounts/show/_template.html.erb b/app/views/accounts/show/_template.html.erb
deleted file mode 100644
index efc7ea5a..00000000
--- a/app/views/accounts/show/_template.html.erb
+++ /dev/null
@@ -1,27 +0,0 @@
-<%# locals: (account:, header: nil, chart: nil, chart_view: nil, tabs: nil) %>
-
-<%= turbo_stream_from account %>
-
-<%= turbo_frame_tag dom_id(account, :container) do %>
- <%= tag.div class: "space-y-4 pb-32" do %>
- <% if header.present? %>
- <%= header %>
- <% else %>
- <%= render "accounts/show/header", account: account %>
- <% end %>
-
- <% if chart.present? %>
- <%= chart %>
- <% else %>
- <%= render "accounts/show/chart", account: account, chart_view: chart_view %>
- <% end %>
-
-
- <% if tabs.present? %>
- <%= tabs %>
- <% else %>
- <%= render "accounts/show/activity", account: account %>
- <% end %>
-
- <% end %>
-<% end %>