Update landing page

This commit is contained in:
Eike Kettner
2020-08-10 17:38:41 +02:00
parent 596290d1ff
commit a86d1c32a3
3 changed files with 5 additions and 5 deletions

View File

@ -40,12 +40,12 @@ demo data =
navigateDemo = navigateDemo =
{ title = "Navigation" { title = "Navigation"
, url = "/videos/docspell-dd-2020-08-09.mp4" , 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 = processDemo =
{ title = "Processing" { title = "Processing"
, url = "/videos/docspell-process-2020-08-09.mp4" , 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."
} }

View File

@ -8,7 +8,7 @@ import Markdown
getStarted : String -> List (Html msg) getStarted : String -> List (Html msg)
getStarted version = getStarted version =
[ div [ class "content container is-size-5" ] [ div [ class "content container" ]
[ Markdown.toHtml [] [ Markdown.toHtml []
"""Docspell consists of several components. The easiest way to get started is probably to use docker and """Docspell consists of several components. The easiest way to get started is probably to use docker and
[docker-compose](https://docs.docker.com/compose/).""" [docker-compose](https://docs.docker.com/compose/)."""

View File

@ -130,8 +130,8 @@ view model =
, demoHero , demoHero
, section [ class "section" ] , section [ class "section" ]
[ div [ class "container" ] [ div [ class "container" ]
[ Demo.demo Demo.navigateDemo [ Demo.demo Demo.processDemo
, Demo.demo Demo.processDemo , Demo.demo Demo.navigateDemo
] ]
] ]
, getStartedHero model , getStartedHero model