diff options
author | William Carroll <wpcarro@gmail.com> | 2020-10-10T16·31+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-10-10T16·31+0100 |
commit | bfbe7dc988421f4c7ec5cdc09569389cf082864f (patch) | |
tree | 849821e39148a482b4cc3e195d53fcad0fedcf33 /scratch/habit-screens | |
parent | df8e45681d203e0c176a638dd3681511c71cbf59 (diff) |
Add a footer
With personal information and information about the project's stack.
Diffstat (limited to 'scratch/habit-screens')
-rw-r--r-- | scratch/habit-screens/client/src/Habits.elm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scratch/habit-screens/client/src/Habits.elm b/scratch/habit-screens/client/src/Habits.elm index ad25df4f4b2d..644c54911bce 100644 --- a/scratch/habit-screens/client/src/Habits.elm +++ b/scratch/habit-screens/client/src/Habits.elm @@ -166,4 +166,8 @@ render { dayOfWeek, completed } = ] ) ) + , footer [ class "font-mono text-sm text-center text-gray-500 fixed bottom-0 left-0 w-full py-4" ] + [ p [] [ text "This app is brought to you by William Carroll." ] + , p [] [ text "Client: Elm; Server: n/a" ] + ] ] |