-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Implement knowledge base mvp * move to biome * Update nav * Update knowledge-base/kb-forwarding-emails.mdx Co-authored-by: Andrew Blaney <[email protected]> * Update knowledge-base/kb-personal-email.mdx Co-authored-by: Andrew Blaney <[email protected]> * Update kb-setup-time.mdx * formatting --------- Co-authored-by: Andrew Blaney <[email protected]>
- Loading branch information
1 parent
0af9ac8
commit 11ab8f3
Showing
13 changed files
with
269 additions
and
109 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"editor.tabSize": 2 | ||
} | ||
"editor.tabSize": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/biomejs/biome/main/schema.json", | ||
"files": { | ||
"exclude": ["node_modules", "dist"] | ||
}, | ||
"linter": { | ||
"rules": { | ||
"recommended": true | ||
} | ||
}, | ||
"formatter": { | ||
"enabled": true | ||
}, | ||
"organizeImports": { | ||
"enabled": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,43 @@ | ||
/* Make logo smaller */ | ||
#navbar img[src*='public/logo'] { | ||
height: 22px; | ||
#navbar img[src*="public/logo"] { | ||
height: 22px; | ||
} | ||
|
||
/* Global font weight adjustments */ | ||
.font-extrabold { | ||
font-weight: 600; | ||
font-weight: 600; | ||
} | ||
|
||
.font-semibold { | ||
font-weight: 500; | ||
font-weight: 500; | ||
} | ||
|
||
/* By default h2s are very bold, this reduces the font-weight */ | ||
.prose :where(h2):not(:where([class~='not-prose'] *)) { | ||
font-weight: 600; | ||
.prose :where(h2):not(:where([class~="not-prose"] *)) { | ||
font-weight: 600; | ||
} | ||
|
||
/* Within plain we never want a tighter leading than the default so override this globally. */ | ||
.tracking-tight { | ||
letter-spacing: 0; | ||
letter-spacing: 0; | ||
} | ||
|
||
/* Remove tight leading on titles within the content */ | ||
.prose :where(h1, h2, h3):not(:where([class~='not-prose'] *)) { | ||
letter-spacing: initial; | ||
.prose :where(h1, h2, h3):not(:where([class~="not-prose"] *)) { | ||
letter-spacing: initial; | ||
} | ||
|
||
/* Links that are in the content of the page */ | ||
.prose :where(a):not(:where([class~='not-prose'] *)) { | ||
font-weight: 500; | ||
.prose :where(a):not(:where([class~="not-prose"] *)) { | ||
font-weight: 500; | ||
} | ||
|
||
/* Prevent layout shift from scrollbar appearing */ | ||
html { | ||
overflow-y: scroll; | ||
overflow-y: scroll; | ||
} | ||
|
||
/* Hide sidebar scrollbar */ | ||
#sidebar::-webkit-scrollbar { | ||
display: none; | ||
display: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
title: Can I forward emails to Plain? | ||
--- | ||
|
||
No. If you receive an email to your personal email address and would like to hand it off to support what you can do is **CC** your support email. | ||
|
||
For example, if [email protected] is your support email, your email exchange could look like this: | ||
|
||
--- | ||
|
||
**From**: [email protected]<br/> | ||
**To**: You<br/> | ||
|
||
> Can you help me with A, B & C. | ||
--- | ||
|
||
**From**: You<br/> | ||
**To**: [email protected]<br/> | ||
**Cc**: [email protected] 👈<br/> | ||
|
||
> Hey Jane, sure thing. Just looping in our support team here (CCd) who can help you out! | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Can I connect my personal email address to Plain? | ||
--- | ||
|
||
Technically you can connect any email to Plain if you control the domain (e.g. not @hotmail.com) but we don't recommend using a personal email. The reason for this is that emails are visible to all users of Plain in your workspace. | ||
|
||
Visibility aside, we are focused on providing support via email and so Plain is not well suited for personal email address workflows. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: How long does it take to set up Plain? Do I need to have someone technical do it for me? | ||
--- | ||
|
||
If you are setting up Plain to handle your Slack support it only takes a few minutes. You have to add a Slack app to your workspace and then invite Plain to the channels you want to handle. For detailed instructions [read the docs](/slack). | ||
|
||
The Plain App will walk you throught this process or we can help you onboard in a quick 15 minute call. | ||
|
||
If you want to set-up Plain via email you need a bit more time and need to be able to add DNS records to your domain. For more info on how to set up email, [read the docs](/email). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Are you SOC2 certified? | ||
--- | ||
|
||
Yes. We are SOC2 Type II compliant. On request we can share our lates SOC2 report as well as our latest pen test and other associated documentation. | ||
|
||
We are also GDPR compliant. You can read more high-level information on our security approach [here](/security). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: Knowledge Base | ||
sidebarTitle: Overview | ||
--- | ||
|
||
<Note>**Beta**: We're just in the process of building out our knowledge base. A lot more coming soon</Note> | ||
|
||
|
||
### Setup | ||
- [How long does it take to set up Plain? Do I need to have someone technical do it for me?](./kb-setup-time) | ||
|
||
- [Can I connect my personal email address to Plain?](./kb-personal-email) | ||
- [Can I forward emails to Plain?](./kb-forwarding-emails) | ||
|
||
### Security | ||
- [Are you SOC2 certified?](./kb-soc2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.