Skip to content

Commit 0d3d01b

Browse files
authored
Added and updated images for bookmarks, split-view, and workspaces sections (#163)
* Added and updated images for bookmarks, split-view, and workspaces sections * Update documentation index with new icons and card descriptions
1 parent 2f4f30a commit 0d3d01b

16 files changed

+35
-26
lines changed

content/docs/index.mdx

+12-12
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ icon: BookOpen
77
import {
88
SpeechIcon,
99
BookIcon,
10-
WrenchIcon,
1110
PaletteIcon,
1211
HelpCircleIcon,
13-
BarChartIcon,
1412
HeartIcon,
15-
ShieldIcon
13+
ShieldIcon,
14+
Paintbrush,
15+
Hammer
1616
} from 'lucide-react';
1717

1818
Welcome to **Zen Browser's Documentation!** Here, you'll find everything you need to get the most out of your browsing experience. Dive in to explore how Zen can make your browsing more secure, private, and efficient.
@@ -25,10 +25,16 @@ Welcome to **Zen Browser's Documentation!** Here, you'll find everything you nee
2525
description="Complete user guide and features"
2626
/>
2727
<Card
28-
icon={<WrenchIcon />}
29-
title="Guides"
28+
icon={<Paintbrush />}
29+
title="CSS Live Editing"
3030
href="/guides/live-editing"
31-
description="Tutorials and how-to guides"
31+
description="Live CSS editing for customizing the browser"
32+
/>
33+
<Card
34+
icon={<Hammer />}
35+
title="Build the Browser"
36+
href="/guides/building"
37+
description="Build the browser from source"
3238
/>
3339
<Card
3440
icon={<PaletteIcon />}
@@ -42,12 +48,6 @@ Welcome to **Zen Browser's Documentation!** Here, you'll find everything you nee
4248
href="/faq"
4349
description="Frequently asked questions"
4450
/>
45-
<Card
46-
icon={<BarChartIcon />}
47-
title="Benchmarks"
48-
href="/benchmarks"
49-
description="Performance comparisons"
50-
/>
5151
<Card
5252
icon={<ShieldIcon />}
5353
title="Security"

content/docs/user-manual/bookmarks.mdx

+15-10
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,31 @@
11
---
22
title: Bookmarks in Zen
33
---
4+
import { Tab, Tabs } from 'fumadocs-ui/components/tabs';
45

56
Zen, as a fork of Firefox, inherits its webpage bookmarking system from the Gecko engine, with some of that extra Zen touch added on top. Zen offers two vertical tab layouts: **Single toolbar layout**, which integrates a compact address bar into the vertical tabs toolbar, and **Multiple toolbars layout**, featuring a traditional, full-size address bar in a separate horizontal toolbar. This guide covers the basics of creating and managing bookmarks, tailored to your chosen Zen layout.
67

78
## How do I bookmark a page
89

910
To bookmark a page, find and click on the bookmark icon in the address bar. A pop up dialog will allow you to name and move your bookmark.
1011

11-
{/* TODO: insert video of popup dialog */}
1212

1313
<Callout type="info" title="Tips:">
1414
Did you know Zen offers Workspaces specific bookmarks?
1515
</Callout>
1616

17-
In **Multiple toolbars layout**, you will find the bookmark icon exposed on the right of your address bar, while in **Single toolbar layout**, you must first expand your compact address bar by clicking on it then find the icon there.
18-
19-
{/* TODO: **Single toolbar layout**
20-
21-
*insert video*
22-
23-
**Multiple toolbars layout**
17+
{/* TODO: insert video of popup dialog */}
18+
<Tabs groupId="toolbar" items={['Single Toolbar', 'Multiple Toolbars']} persist>
19+
<Tab value="Single Toolbar">
20+
In **Single toolbar layout**, you must first expand your compact address bar by clicking on it then find the icon there.
21+
![Bookmark Popup](/assets/user-manual/bookmarks/bookmark-popup-single-toolbar.png)
22+
</Tab>
23+
<Tab value="Multiple Toolbars">
24+
In **Multiple toolbars layout**, you will find the bookmark icon exposed on the right of your address bar.
25+
![Bookmark Popup](/assets/user-manual/bookmarks/bookmark-popup-multiple-toolbars.png)
26+
</Tab>
27+
</Tabs>
2428

25-
*insert video* */}
2629

2730
<Callout type="info" title="Tips:">
2831
While you could use your mouse to click the bookmark icon, we recommend using the keyboard shortcut `Ctrl/Cmd + D` for bookmarking, especially in **Single toolbar layout**.
@@ -42,6 +45,7 @@ Taken from the default behavior of Gecko, Zen offers 3 locations (or, groups) fo
4245
- **Bookmarks Toolbar**: This can be considered a public location for bookmarks, displayed in the browser's [chrome](https://developer.mozilla.org/en-US/docs/Glossary/Chrome). You typically find it beneath the main browser toolbar, which is featured in **Multiple toolbars layout** in Zen, while in **Single toolbar layout**, hovering your cursor to the top edge will display the hidden Bookmarks Toolbar, next to your window controls. To toggle the visibility of your Bookmarks Toolbar, use the shortcut `Ctrl/Cmd + Shift + B`
4346

4447
{/* TODO: *insert video* */}
48+
![Bookmarks Toolbar](/assets/user-manual/bookmarks/bookmarks-toolbar.png)
4549

4650
<Callout type="info" title="Tips:">
4751
If you want to fully hide the Bookmarks Toolbar, you can change these settings in `about:config`
@@ -58,12 +62,13 @@ Taken from the default behavior of Gecko, Zen offers 3 locations (or, groups) fo
5862
Your bookmarks are also avaialbe via what is known as the [Firefox Sidebar](https://support.mozilla.org/kb/use-firefox-sidebar-access-bookmarks-history-synced). The Sidebar can be opened by adding a Sidebar button to your controls, or preferably by using the shortcut `Ctr/Cmd + B` to open the Bookmarks Sidebar. You can find all of your bookmarks here including entries from both Bookmarks Toolbar and Bookmarks Menu, in the form of a tree structure explorer with access to a searching function at the top.
5963

6064
{/* TODO: *insert video/image* */}
65+
![Bookmarks Sidebar](/assets/user-manual/bookmarks/bookmarks-sidebar.png)
6166

6267
### Bookmarks Library
6368

6469
The Firefox Library is a Bookmarks/History/Download Manager. You can access the Library by the shortcut `Ctrl/Cmd + Shift + O`. While you can manage your bookmarks here in the same fashion as the Sidebar with extra details, you should only open the Library for the purpose of Importing and Backing up Zen's data.
6570

66-
*insert library image*
71+
![Bookmarks Library](/assets/user-manual/bookmarks/bookmarks-library.png)
6772

6873
<Callout>
6974
_All shortcuts can be modified via `Settings > Keyboard Shortcuts`._

content/docs/user-manual/compact-mode.mdx

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ In Multiple Toolbar or Collapsed Toolbar mode, you can choose which bar to hide.
2424
- **Hide toolbar**: Hide the top toolbar, accessible when hovering top edge of the browser.
2525
- **Hide both**: Hide both top toolbar and tab sidebar.
2626

27-
<div align="center">
28-
<img src="/assets/user-manual/compact-mode/enable-compact-mode.png" alt="Compact Mode" width="500" />
29-
</div>
27+
![Compact Mode](/assets/user-manual/compact-mode/enable-compact-mode.png)
3028

3129
You can also use these extra shortcuts to show the hidden bars, suitable for heavy keyboard users. Unlike usual hovering gesture, showing sidebar/toolbar using these shortcuts is done persistently, until you pressed the shortcut again to hide it.
3230

content/docs/user-manual/split-view.mdx

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ You can create split view simply by open one tab, drag another tab from sidebar
1515
- click new tab button, insert url, load it, and drag it into the existing split.
1616
- right click a link from one of the tabs > click "split link in new tab"
1717
*/}
18+
![Split ](/assets/user-manual/split-view/split-context-menu.png)
19+
1820

1921
### Using split wiew
2022
When split view is enabled, the active tab will have an overlay on its top side, containing two buttons: **Drag Handle** `:::` button and **Unsplit Tab** `` button.
@@ -37,4 +39,6 @@ Zen also provide keyboard shortcuts to help you rearrange the split tabs automat
3739

3840
You can also press one of the Toggle Split View shortcuts to split current tab with the tab below it.
3941

40-
> All shortcuts can be modified via `Settings > Keyboard Shortcuts`.
42+
<Callout>
43+
All shortcuts can be modified via `Settings > Keyboard Shortcuts`.
44+
</Callout>

content/docs/user-manual/workspaces.mdx

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ Perfect for power users, workspaces bring the flexibility of multiple browser wi
1515
### Container Tabs / Multi-Account Containers
1616
Container Tabs is a feature derived from Firefox that provide separate cookie sessions within the same browser profile. With Container Tabs, you can log in with multiple accounts on the same sites without having to log out/in multiple times.
1717

18+
![Enable Container Tabs](/assets/user-manual/workspaces/enable-container-tabs.png)
19+
1820
By default, there are four containers provided by Firefox: **Personal**, **Work**, **Banking**, and **Shopping**. You can manage, remove, or add new containers from `"Settings" > "General" > "Container Tabs"`. You can choose between 9 colors and 13 icons to customize or create your own containers.
1921

2022
![Container Tabs](/assets/user-manual/workspaces/container-tabs.png)
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)