diff --git a/backend-services/feed-service/app/controllers/HomeController.scala b/backend-services/feed-service/app/controllers/HomeController.scala
index 272ed2d958f684b7cf2bebb4e7663c005ff0a8eb..60a6e853619c672b573c0e1b974e44f16f86bf5d 100644
--- a/backend-services/feed-service/app/controllers/HomeController.scala
+++ b/backend-services/feed-service/app/controllers/HomeController.scala
@@ -19,6 +19,6 @@ class HomeController @Inject()(val controllerComponents: ControllerComponents) e
    * a path of `/`.
    */
   def index() = Action { implicit request: Request[AnyContent] =>
-    Ok(views.html.index())
+    Ok("OK")
   }
 }
diff --git a/backend-services/feed-service/app/views/index.scala.html b/backend-services/feed-service/app/views/index.scala.html
deleted file mode 100644
index 68d37fb1d4dd78599b132f954d1fe5b2245981e5..0000000000000000000000000000000000000000
--- a/backend-services/feed-service/app/views/index.scala.html
+++ /dev/null
@@ -1,5 +0,0 @@
-@()
-
-@main("Welcome to Play") {
-  <h1>Welcome to Play!</h1>
-}
diff --git a/backend-services/feed-service/app/views/main.scala.html b/backend-services/feed-service/app/views/main.scala.html
deleted file mode 100644
index 808a8b892919c8a4565ccc5e2d487c271312f712..0000000000000000000000000000000000000000
--- a/backend-services/feed-service/app/views/main.scala.html
+++ /dev/null
@@ -1,25 +0,0 @@
-@*
- * This template is called from the `index` template. This template
- * handles the rendering of the page header and body tags. It takes
- * two arguments, a `String` for the title of the page and an `Html`
- * object to insert into the body of the page.
- *@
-@(title: String)(content: Html)
-
-<!DOCTYPE html>
-<html lang="en">
-    <head>
-        @* Here's where we render the page title `String`. *@
-        <title>@title</title>
-        <link rel="stylesheet" media="screen" href="@routes.Assets.versioned("stylesheets/main.css")">
-        <link rel="shortcut icon" type="image/png" href="@routes.Assets.versioned("images/favicon.png")">
-
-    </head>
-    <body>
-        @* And here's where we render the `Html` object containing
-         * the page content. *@
-        @content
-
-      <script src="@routes.Assets.versioned("javascripts/main.js")" type="text/javascript"></script>
-    </body>
-</html>