aboutsummaryrefslogtreecommitdiff
path: root/frontend/start.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/start.ts')
-rw-r--r--frontend/start.ts9
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"),
)
}