diff options
| -rw-r--r-- | src/genpass/core.cljs | 12 | 
1 files changed, 9 insertions, 3 deletions
| diff --git a/src/genpass/core.cljs b/src/genpass/core.cljs index 186eaeb..a31768a 100644 --- a/src/genpass/core.cljs +++ b/src/genpass/core.cljs @@ -17,12 +17,18 @@  (defn home-page []    [:div -   [:section.section>div.container -    (main-section)] +   [:nav.navbar +    {:role       "navigation" +     :aria-label "main navigation"} +    [:div.navbar-brand>a.navbar-item>h1 +     [:a +      {:href "https://github.com//gabrielgio/genpass"} +      "Genpass source code"]]] +   [:section.section>div.container (main-section)]     [:footer.footer>div.content.has-text-centered>p "Link"]])  (defn mount-root []    (r/render [home-page] (.getElementById js/document "app")))  (defn init! [] -  (mount-root)) +  (mount-root))
\ No newline at end of file | 
