From e40b84173e949502addb1b5047ab2aa9e3048803 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Wed, 23 Mar 2022 17:04:19 -0400 Subject: [PATCH] Add link to the github repo at the bottom fixes #9 --- web/src/components/tabs.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/components/tabs.rs b/web/src/components/tabs.rs index 24d55bd..c7b0c5a 100644 --- a/web/src/components/tabs.rs +++ b/web/src/components/tabs.rs @@ -40,5 +40,8 @@ pub fn tabbed_view(state: TabState) -> View { div { (state.inner) } + div(class="footer") { + a(href="https://github.com/zaphar/kitchen") { "Github" } + } }) }