diff --git a/src/views/Help/Help.scss b/src/views/Help/Help.scss index d7dff73..4dbccf3 100644 --- a/src/views/Help/Help.scss +++ b/src/views/Help/Help.scss @@ -1,2 +1,32 @@ .Help { + .container { + display: flex; + } + .navigation { + background-color: #083d60; + border: 1px solid #020c13; + padding: 10px; + margin-bottom: 20px; + } + + .navigation a { + margin-right: 10px; + text-decoration: none; + color: #ffffff; + font-weight: bold; + .db { + color: #020c13; + } + &:hover { + color: #020c13; + + .db { + color: #fff; + } + } + } + + .liIcon { + margin-bottom: -5px; + } } diff --git a/src/views/Help/Help.tsx b/src/views/Help/Help.tsx index c2d9dff..16ac331 100644 --- a/src/views/Help/Help.tsx +++ b/src/views/Help/Help.tsx @@ -8,11 +8,152 @@ function Help() { return (
+

wannadb HELP CENTER

- {/* TODO*/} + { + /* TODO*/ + <> +
+ +
+ +

+ Welcome to the wannadb{' '} + help center. Here you will find answers to + frequently asked questions and useful tips for using + our service.
+ For all of these functions to work please login or + register an new account. +

+
+

How to upload documents?

+ { +
    +
  1. +

    + Navigate to the Homepage. At the top + you will see the 'Document Upload' + section. +

    +
  2. +
  3. +

    + First select the organization you + want to upload the files to. By + default your personal + document-storage is selected. +

    +
  4. +
  5. +

    + After pressing the 'Browse...' + button, a pop-up will appear, where + you can browse and select all files + you want to upload. +

    +
  6. +
  7. +

    + Using the 'Add' button will show all + files you've selected. By using + 'discard' all selected files will be + lost. +

    +
  8. +
  9. +

    + You can remove documents by pressing + 'Remove Document' #icon next to the + file.{' '} +

    +
  10. +
  11. +

    + By pressing{' '} + {' '} + 'Upload' you complete the process + and can now use the newly uploaded + documents. +

    +
  12. +
+ } +
+ +
+

+ How can i use wanna + db on my documents? +

+ { +
    +
  1. +

    + After uploading the files, you now + have to create a document base. +

    +
  2. +
  3. +

    + Click on the "Create Document Base" + button. +

    +
  4. +
  5. +

    + First enter a name for your document + base. +

    +
  6. +
  7. +

    + Select all documents you want to use + wannadb{' '} + on. +

    +
  8. +
  9. +

    + Add or delete 'Attributes' you want + the documents filtered for. +

    +
  10. +
  11. +

    + Using{' '} + + 'Run' will finish the + creation-process, so you can + interact with the newly structured + documents. +

    +
  12. +
+ } +
+ + }
);