feature.nim 566 B

1234567891011121314
  1. # SPDX-License-Identifier: AGPL-3.0-only
  2. import karax/[karaxdsl, vdom]
  3. proc renderFeature*(): VNode =
  4. buildHtml(tdiv(class="overlay-panel")):
  5. h1: text "Unsupported feature"
  6. p:
  7. text "Nitter doesn't support this feature yet, but it might in the future. "
  8. text "You can check for an issue and open one if needed here: "
  9. a(href="https://github.com/zedeus/nitter/issues"):
  10. text "https://github.com/zedeus/nitter/issues"
  11. p:
  12. text "To find out more about the Nitter project, see the "
  13. a(href="/about"): text "About page"