Skip to content

Commit 77d68ba

Browse files
committed
Add User's Guide
with skeleton FAQ
1 parent 540337e commit 77d68ba

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# How to Delete an Account
2+
3+
Removing a saved account or barcode is done via the Settings app.
4+
* Open the Settings app
5+
* Tap `Passwords, passkeys & accounts` (in earlier Android versions this is called `Accounts`)
6+
* Tap the account you want to remove
7+
* Tap `Remove account`

docs/user-guide/index.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
sidebar_position: 1
3+
---
4+
5+
# Hemlock User's Guide

src/pages/index.module.css

+4
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,7 @@
2121
align-items: center;
2222
justify-content: center;
2323
}
24+
25+
.buttons:not(:last-child) {
26+
margin-bottom: 1rem; /* Adjust the value as needed */
27+
}

src/pages/index.tsx

+7
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ function HomepageHeader() {
2424
Hemlock Administrator's Guide
2525
</Link>
2626
</div>
27+
<div className={styles.buttons}>
28+
<Link
29+
className="button button--secondary button--lg"
30+
to="/docs/user-guide">
31+
Hemlock User's Guide
32+
</Link>
33+
</div>
2734
</div>
2835
</header>
2936
);

0 commit comments

Comments
 (0)