diff options
Diffstat (limited to 'webapp/src/main.rs')
-rw-r--r-- | webapp/src/main.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/webapp/src/main.rs b/webapp/src/main.rs index 7dd40d9..de4ec42 100644 --- a/webapp/src/main.rs +++ b/webapp/src/main.rs @@ -57,6 +57,7 @@ fn home() -> Html { }; html! { + <> <div class="main-page"> <h1>{"Bridge App"}</h1> <ul class="main-menu"> @@ -64,6 +65,12 @@ fn home() -> Html { <li><button onclick={create_table}>{ "Create table" }</button></li> </ul> </div> + <div class="footer"> + <p>{"Copyright © 2022 Kjetil Ørbekk. "} + <a href={"https://git.orbekk.com/bridge.git/"}>{"Source code"}</a> + </p> + </div> + </> } } |