diff --git a/app/controllers/organizations/adopter_fosterer/faq_controller.rb b/app/controllers/organizations/adopter_fosterer/faq_controller.rb
deleted file mode 100644
index 8befdf8e0..000000000
--- a/app/controllers/organizations/adopter_fosterer/faq_controller.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-module Organizations
- module AdopterFosterer
- class FaqController < Organizations::BaseController
- skip_verify_authorized only: [:index]
- layout "adopter_foster_dashboard", only: :index
-
- def index
- @faqs = Faq.all
- end
- end
- end
-end
diff --git a/app/views/layouts/adopter_foster_dashboard.html.erb b/app/views/layouts/adopter_foster_dashboard.html.erb
index 2772577c9..bb4858c06 100644
--- a/app/views/layouts/adopter_foster_dashboard.html.erb
+++ b/app/views/layouts/adopter_foster_dashboard.html.erb
@@ -85,11 +85,6 @@
<% end %>
-
- <%= active_link_to adopter_fosterer_faq_index_path, class: "nav-link" do %>
- FAQ
- <% end %>
-
<% if Current.organization.external_form_url.present? %>
<%= active_link_to adopter_fosterer_external_form_index_path(dashboard: true), class: "nav-link" do %>
diff --git a/app/views/organizations/adopter_fosterer/faq/index.html.erb b/app/views/organizations/adopter_fosterer/faq/index.html.erb
deleted file mode 100644
index 02626cdba..000000000
--- a/app/views/organizations/adopter_fosterer/faq/index.html.erb
+++ /dev/null
@@ -1,8 +0,0 @@
-<%= render DashboardPageComponent.new do |c| %>
- <% c.with_header_title { t('static_pages.faq.faq') } %>
- <% c.with_body do %>
-
- <%= render "static_pages/faq" %>
-
- <% end %>
-<% end %>
\ No newline at end of file
diff --git a/config/routes.rb b/config/routes.rb
index ce25ef885..c07649a42 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -94,7 +94,6 @@
# Adopter and Fosterer Routes
namespace :adopter_fosterer do
- resources :faq, only: [:index]
resources :donations, only: [:index]
resources :dashboard, only: [:index]
resources :likes, only: [:index, :create, :destroy]