diff --git a/web/modules/custom/my_module/src/Controller/BlogPageController.php b/web/modules/custom/my_module/src/Controller/BlogPageController.php
new file mode 100644
index 0000000..91e702c
--- /dev/null
+++ b/web/modules/custom/my_module/src/Controller/BlogPageController.php
@@ -0,0 +1,12 @@
+<?php
+
+namespace Drupal\my_module\Controller;
+
+class BlogPageController {
+
+  public function __invoke(): array {
+    return [];
+  }
+
+}
+