summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDavid Gay <eapoems@riseup.net>2023-10-30 00:26:28 -0400
committerDavid Gay <eapoems@riseup.net>2023-10-30 00:26:28 -0400
commitda6df343c5ad556e671f0ea1572ba233de5c7a83 (patch)
treec59a3fb838c7459765ed598eda9f4a4f6f3194ff /app
parent77f3a43ecefadf7376de2871087c819c871b00dc (diff)
Home#index
Diffstat (limited to 'app')
-rw-r--r--app/controllers/home_controller.rb4
-rw-r--r--app/helpers/home_helper.rb2
-rw-r--r--app/views/home/index.html.erb3
3 files changed, 9 insertions, 0 deletions
diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb
new file mode 100644
index 0000000..95f2992
--- /dev/null
+++ b/app/controllers/home_controller.rb
@@ -0,0 +1,4 @@
+class HomeController < ApplicationController
+ def index
+ end
+end
diff --git a/app/helpers/home_helper.rb b/app/helpers/home_helper.rb
new file mode 100644
index 0000000..23de56a
--- /dev/null
+++ b/app/helpers/home_helper.rb
@@ -0,0 +1,2 @@
+module HomeHelper
+end
diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb
new file mode 100644
index 0000000..a791ff1
--- /dev/null
+++ b/app/views/home/index.html.erb
@@ -0,0 +1,3 @@
+<div>
+ <h1 class="font-bold text-2xl">Welcome to the Cable Club!</h1>
+</div>