summaryrefslogtreecommitdiff
path: root/src/chef/pages/home.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/chef/pages/home.clj')
-rw-r--r--src/chef/pages/home.clj10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/chef/pages/home.clj b/src/chef/pages/home.clj
new file mode 100644
index 0000000..725ba2b
--- /dev/null
+++ b/src/chef/pages/home.clj
@@ -0,0 +1,10 @@
+(ns chef.pages.home
+ (:require [hiccup2.core :as html]
+ [ring.util.response :as ruresp]
+ [chef.pages.utils :as cputils]))
+
+(defn handler [req]
+ (-> (cputils/gen-page "chef" [:i "Coming soon..."])
+ html/html
+ str
+ ruresp/response))