chore: ignore empty pages

This commit is contained in:
0xSage 2024-02-13 16:57:02 +08:00
parent 7c354e7b4e
commit 3c36cbd3c6
4 changed files with 42 additions and 29 deletions

View File

@ -64,12 +64,19 @@ We also have a [Contributor Program](/docs/team/contributor-program) to provide
[Jan](https://github.com/janhq/jan) is pragmatically built using `Typescript` at the application level and `C++` at the Inference level (which we have refactored into [Nitro](https://nitro.jan.ai)[^3]). [Jan](https://github.com/janhq/jan) is pragmatically built using `Typescript` at the application level and `C++` at the Inference level (which we have refactored into [Nitro](https://nitro.jan.ai)[^3]).
We use [Clean Architecture](https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html) and currently support a desktop client with [Electron](https://www.electronjs.org/), a headless server-mode with native [Nodejs](https://nodejs.org/en), and more. We follow [clean architecture](https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html) and currently support multiple frameworks and runtimes:
From an architectural perspective, we have made similar choices to the [Next.js Enterprise Javascript Stack](https://vercel.com/templates/next.js/nextjs-enterprise-boilerplate), which is a [battle-tested](https://nextjs.org/showcase/enterprise) framework for building enterprise-grade applications that scale. - A desktop client with [Electron](https://www.electronjs.org/)
- A headless server-mode with [Nodejs](https://nodejs.org/en)
- Planned support for mobile with [Capacitor](https://capacitorjs.com/)
- Planned support for python runtime
Architecturally, we have made similar choices to the [Next.js Enterprise Javascript Stack](https://vercel.com/templates/next.js/nextjs-enterprise-boilerplate), which is a [battle-tested](https://nextjs.org/showcase/enterprise) framework for building enterprise-grade applications that scale.
:::tip :::tip
At its core, Jan is a software development kit to build and run copilots, agents and assistants on personal devices. The desktop client that many folks use is just a small set of extensions we/the community have built on top.
**At its core, Jan is a software development kit to build and run copilots on personal devices**. The Desktop Client many folks use is, rather, a specific set of extensions packaged by default. We're excited to see what developers do with the SDK (once its in better shape).
::: :::
## Contact ## Contact
@ -84,4 +91,4 @@ Drop us a message in our [Discord](https://discord.gg/af6SaTdzpx) and we'll get
[^1]: Credit to Obsidian's original website [^1]: Credit to Obsidian's original website
[^2]: Credit to [Discourse's About Page](https://www.discourse.org/about) [^2]: Credit to [Discourse's About Page](https://www.discourse.org/about)
[^3]: Credit to [Llama.cpp](https://github.com/ggerganov/llama.cpp), [TensorRT-LLM](https://github.com/NVIDIA/TensorRT-LLM), [vLLM](https://github.com/vllm-project/vllm) and more. [^3]: Credit to [Llama.cpp](https://github.com/ggerganov/llama.cpp), [TensorRT-LLM](https://github.com/NVIDIA/TensorRT-LLM), [vLLM](https://github.com/vllm-project/vllm), [LMDeploy](https://github.com/InternLM/lmdeploy) and more.

View File

@ -2,3 +2,9 @@
title: Pricing title: Pricing
slug: /pricing slug: /pricing
--- ---
| $0 | $1 | Enterprise |
| ---------------- | ---------------- | ----------------------- |
| Free | Premium | TBA |
| ✅ Core features | ✅ Discord badge | ✅ Enterprise-level SLA |
| ✅ free forever | | |

View File

@ -269,9 +269,9 @@ const config = {
}, },
{ {
type: "docSidebar", type: "docSidebar",
sidebarId: "featuresSidebar", sidebarId: "productSidebar",
positionL: "left", positionL: "left",
label: "Features", label: "Product",
}, },
{ {
type: "docSidebar", type: "docSidebar",
@ -279,12 +279,12 @@ const config = {
position: "left", position: "left",
label: "Ecosystem", label: "Ecosystem",
}, },
{ // {
type: "docSidebar", // type: "docSidebar",
sidebarId: "pricingSidebar", // sidebarId: "pricingSidebar",
positionL: "left", // positionL: "left",
label: "Pricing", // label: "Pricing",
}, // },
// Navbar right // Navbar right
{ {
type: "dropdown", type: "dropdown",

View File

@ -53,22 +53,7 @@ const sidebars = {
], ],
}, },
], ],
featuresSidebar: [ productSidebar: [
{
type: "category",
collapsible: true,
collapsed: true,
label: "Features",
link: { type: "doc", id: "features/features" },
items: [
"features/local",
"features/remote",
"features/api-server",
"features/extensions-framework",
"features/agents-framework",
"features/data-security",
],
},
{ {
type: "category", type: "category",
label: "Platforms", label: "Platforms",
@ -80,6 +65,21 @@ const sidebars = {
// "platforms/hub", // "platforms/hub",
], ],
}, },
{
type: "category",
collapsible: true,
collapsed: false,
label: "Features",
link: { type: "doc", id: "features/features" },
items: [
"features/local",
"features/remote",
"features/api-server",
"features/extensions-framework",
"features/agents-framework",
"features/data-security",
],
},
// NOTE: Jan Server Suite will be torn out into it's own section in the future // NOTE: Jan Server Suite will be torn out into it's own section in the future
// { // {
// type: "category", // type: "category",