diff options
author | Lia Lenckowski <lialenck@protonmail.com> | 2023-08-07 21:16:28 +0200 |
---|---|---|
committer | Lia Lenckowski <lialenck@protonmail.com> | 2023-08-07 21:16:28 +0200 |
commit | 38c834d671d60bcbe8f0931cdb41dd325f1004d6 (patch) | |
tree | d4e10640754a897d713c0567c646aaf80e5c5c2f /frontend/start.ts | |
parent | 6e73d741c828c0e12c3ba1e1270d8b3c4d3182f0 (diff) | |
download | fastbangs-38c834d671d60bcbe8f0931cdb41dd325f1004d6.tar fastbangs-38c834d671d60bcbe8f0931cdb41dd325f1004d6.tar.bz2 fastbangs-38c834d671d60bcbe8f0931cdb41dd325f1004d6.tar.zst |
static frontend changes
Diffstat (limited to 'frontend/start.ts')
-rw-r--r-- | frontend/start.ts | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/frontend/start.ts b/frontend/start.ts index d686b27..5e006de 100644 --- a/frontend/start.ts +++ b/frontend/start.ts @@ -6,9 +6,12 @@ export function section_info_start() { return e("section", { class: "info" }, e("h1", {}, "Fastbangs"), e("p", {}, ` - This application provides a way to (mostly) locally handle search bangs. - First select a default engine to use, then register this page as a search in your browser - `), + This application provides a way to (mostly) locally handle search bangs. To use it: + `), + e("ul", {}, + e("li", {}, "Select a fallback search engine, used when a search doesn't contain a bang"), + e("li", {}, "Add this search engine to your browser, or bookmark this page"), + ), e("a", { href: "#~submit" }, "Propose or change a bang"), ) } |