diff --git a/docs/blog/2023-11-05-hello-world.md b/docs/blog/2023-11-05-hello-world.md
new file mode 100644
index 000000000..ad080e320
--- /dev/null
+++ b/docs/blog/2023-11-05-hello-world.md
@@ -0,0 +1,12 @@
+---
+title: Hello World
+description: This is my first post on Docusaurus.
+slug: hello-world
+authors:
+ - name: Daniel
+tags: [hello, jan]
+image: https://i.imgur.com/mErPwqL.png
+hide_table_of_contents: false
+---
+
+Hello World!
\ No newline at end of file
diff --git a/docs/blog/authors.yml b/docs/blog/authors.yml
new file mode 100644
index 000000000..f30d4610d
--- /dev/null
+++ b/docs/blog/authors.yml
@@ -0,0 +1,6 @@
+dan-jan:
+ name: Daniel Onggunhao
+ title: Co-Founder
+ url: https://github.com/dan-jan
+ image_url: https://avatars.githubusercontent.com/u/101145494?v=4
+ email: daniel@jan.ai
\ No newline at end of file
diff --git a/docs/docs/about/about.md b/docs/docs/about/about.md
index 9d813e021..1618172d8 100644
--- a/docs/docs/about/about.md
+++ b/docs/docs/about/about.md
@@ -2,5 +2,80 @@
title: About Jan
---
-- Mission, Vision, etc
-- COSS Model
\ No newline at end of file
+Jan is a Personal AI that you can customize, that runs privately on your own computer.
+
+We envision a future where our lives are improved by helpful and practical AI assistants, that we continuously customize to meet our needs.
+
+## Why does Jan Exist?
+
+### Our Mission
+
+To enable high-productivity individuals to use AI to scale themselves.
+
+### Our Ideal Customer
+
+Our ideal customer is an AI Enthusiast who wants to experiment with solving problems using AI, and is ok with experimental software.
+
+- Semi-technical (i.e. can code simple Javascript/Python scripts), i.e. not able to build the whole thing themselves
+- Will file bugs
+- [Plus] Wants to share their solution with others
+
+Our goal in 2023 is to find 500 of these ideal customers.
+
+### Problem Statement
+
+Our ideal customer has clear ideas for how to solve his/her problems using AI, but has not done so because:
+
+- Lack full skillset across UI, Backend and MLOps to build their own custom Personal AI
+- Doesn't have 10 hours/week to build and maintain a Personal AI
+- Uncomfortable with giving personal info to ChatGPT
+
+### Our Solution
+
+Jan is a Personal AI that you can customize, and runs privately on your own computer.
+
+- Tinker and customize in <10 lines of code
+- Pre-built plugins (e.g. RAG, Langchain, LlamaIndex)
+- Mobile support (including helpful widgets)
+
+Jan has a very modular architecture that allows you to swap out or customize components, without having to rebuild everything.
+
+## How Jan Works
+
+### Open Source
+
+Jan is a startup with an open source business model. We believe in the need for an open source AI ecosystem, and are committed to building it.
+
+- [Jan: a Personal AI](https://github.com/janhq/jan) (AGPLv3)
+- [Nitro: run Local AI](https://github.com/janhq/nitro) (AGPLv3)
+
+### Build in Public
+
+We use Github to build in public, and welcome anyone to join in.
+
+- [Jan's Kanban](https://github.com/orgs/janhq/projects/5)
+- [Jan's Roadmap](https://github.com/orgs/janhq/projects/5/views/2)
+
+### Bootstrapped
+
+Jan is currently a bootstrapped startup. We balance technical invention with the search for a sustainable business model.
+
+We appreciate any business that can balance growth with cashflow/profitability.
+
+### Remote Team
+
+Jan has a fully-remote team. We are mainly based in the Asia timezone. We use [Github](https://github.com/janhq) and [Discord](https://discord.gg/af6SaTdzpx) to work.
+
+## Contact
+
+### General Enquiries
+
+Drop us a message in our [Discord](https://discord.gg/af6SaTdzpx) and we'll get back to you.
+
+- `#general`: for general discussion
+- `#jan-dev`: for Jan-related questions
+- `#nitro-dev`: for Nitro-related questions
+
+### Careers
+
+Jan has a culture of ownership, independent thinking, and lightning fast execution. If you'd like to join us, we have open positions on our [careers page](https://janai.bamboohr.com/careers).
diff --git a/docs/docs/events/nvidia-llm-day-nov-23.md b/docs/docs/events/nvidia-llm-day-nov-23.md
new file mode 100644
index 000000000..33f8ff764
--- /dev/null
+++ b/docs/docs/events/nvidia-llm-day-nov-23.md
@@ -0,0 +1,21 @@
+---
+title: "Nov 23: Nvidia GenAI Day"
+description: Nvidia's LLM Day
+---
+
+
+
+## Nvidia GenAI Innovation Day
+
+Jan will be at Nvidia's GenAI Innovation Day in Nov '23, focusing on Enterprise use-cases of LLMs.
+
+### Location
+
+- JW Marriott Hanoi Hotel
+- 8:30am November 8th 2023
+- Registration: [https://gmcgroup.com.vn/nvidia-genai-event/](https://gmcgroup.com.vn/nvidia-genai-event/)
+
+### Programme
+
+
+
diff --git a/docs/docs/handbook/handbook.md b/docs/docs/handbook/handbook.md
index 3cb2c1af9..c4e635458 100644
--- a/docs/docs/handbook/handbook.md
+++ b/docs/docs/handbook/handbook.md
@@ -3,5 +3,3 @@ title: Company Handbook
slug: /handbook
---
-
-## Remote Work
\ No newline at end of file
diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js
index 7de037430..a6ce99a41 100644
--- a/docs/docusaurus.config.js
+++ b/docs/docusaurus.config.js
@@ -73,7 +73,10 @@ const config = {
filename: "sitemap.xml",
},
// Will be passed to @docusaurus/plugin-content-blog (false to disable)
- blog: false,
+ blog: {
+ blogSidebarTitle: "All Posts",
+ blogSidebarCount: "ALL",
+ },
// Will be passed to @docusaurus/theme-classic.
theme: {
customCss: require.resolve("./src/styles/main.scss"),
@@ -131,6 +134,11 @@ const config = {
label: "Developers",
},
// Navbar right
+ {
+ to: "blog",
+ label: "Blog",
+ position: "right",
+ },
{
type: "docSidebar",
sidebarId: "aboutSidebar",
diff --git a/docs/sidebars.js b/docs/sidebars.js
index d725c4d50..f8ba8d47c 100644
--- a/docs/sidebars.js
+++ b/docs/sidebars.js
@@ -105,9 +105,10 @@ const sidebars = {
collapsible: true,
collapsed: true,
items: [
+ "events/nvidia-llm-day-nov-23",
{
type: "doc",
- label: "Ho Chi Minh City (Oct 2023)",
+ label: "Oct 23: HCMC Hacker House",
id: "events/hcmc-oct23",
},
],
@@ -117,7 +118,7 @@ const sidebars = {
label: "Company Handbook",
collapsible: true,
collapsed: true,
- link: { type: "doc", id: "handbook/handbook" },
+ // link: { type: "doc", id: "handbook/handbook" },
items: [
{
type: "doc",
diff --git a/docs/src/pages/index.js b/docs/src/pages/index.js
index 6c7de6970..1e65b52ca 100644
--- a/docs/src/pages/index.js
+++ b/docs/src/pages/index.js
@@ -70,9 +70,9 @@ export default function Home() {
Event
-
+
- 24-28 Oct: Jan's AI Hacker House (Ho Chi Minh City)
+ 8 Nov 2023: Nvidia LLM Day (Hanoi)
- {/* Run Large Language Models locally on
- Mac
- ,
- Windows
- or
- Linux. */}
Jan is a powerful
- Personal AI
- built to run locally on your machine,
-
- with a rich
- app and
- plugin ecosystem.
+
+ Personal AI
+
+ built to run locally on your computer,
+
+ inifinitely customizable via
+ apps
+ and
+ plugins.