diff --git a/website/elm/Demo.elm b/website/elm/Demo.elm index 64bdc2ca..6be5cbdb 100644 --- a/website/elm/Demo.elm +++ b/website/elm/Demo.elm @@ -40,12 +40,12 @@ demo data = navigateDemo = { title = "Navigation" , url = "/videos/docspell-dd-2020-08-09.mp4" - , info = "Shows navigating through documents using tags and tag categories." + , info = "Shows basic navigation through documents using tags and tag categories." } processDemo = { title = "Processing" , url = "/videos/docspell-process-2020-08-09.mp4" - , info = "Presents the basic idea: maintain an address book and let docspell find matches." + , info = "Presents the basic idea: maintain an address book and let docspell find matches for new uploaded documents and attach them automatically." } diff --git a/website/elm/GetStarted.elm b/website/elm/GetStarted.elm index 9e6df77c..c7aac6cb 100644 --- a/website/elm/GetStarted.elm +++ b/website/elm/GetStarted.elm @@ -8,7 +8,7 @@ import Markdown getStarted : String -> List (Html msg) getStarted version = - [ div [ class "content container is-size-5" ] + [ div [ class "content container" ] [ Markdown.toHtml [] """Docspell consists of several components. The easiest way to get started is probably to use docker and [docker-compose](https://docs.docker.com/compose/).""" diff --git a/website/elm/Main.elm b/website/elm/Main.elm index cc2f9062..46d2bc0c 100644 --- a/website/elm/Main.elm +++ b/website/elm/Main.elm @@ -130,8 +130,8 @@ view model = , demoHero , section [ class "section" ] [ div [ class "container" ] - [ Demo.demo Demo.navigateDemo - , Demo.demo Demo.processDemo + [ Demo.demo Demo.processDemo + , Demo.demo Demo.navigateDemo ] ] , getStartedHero model