Edit event details, hide all unnecessary website sections

This commit is contained in:
Daniel 2023-10-17 11:52:14 +08:00
parent 54096a014e
commit 6577134ee3
4 changed files with 54 additions and 61 deletions

View File

@ -133,17 +133,12 @@ yarn build
This will build the app MacOS m1/m2 for production (with code signing already done) and put the result in `dist` folder.
## License
Jan is free, [open core](https://en.wikipedia.org/wiki/Open-core_model), and Sustainable Use Licensed.
## Acknowledgements
Jan builds on top of other open-source projects:
- [llama.cpp](https://github.com/ggerganov/llama.cpp)
- [TensorRT](https://github.com/NVIDIA/TensorRT)
- [Keycloak Community](https://github.com/keycloak/keycloak) (Apache-2.0)
## Contact

View File

@ -33,10 +33,8 @@ To help us manage RSVPs, please use the Eventbrite links below to RSVP for each
| Day | Eventbrite Link | Signups |
| -------------- | -------------------------- | ------------------------------------------------------ |
| Mon (23 Oct) | Jan Team & Partners Dinner | Invite-only |
| Tues (24 Oct) | AI Talks Day 1 | [Eventbrite](https://jan-tech-talks-1.eventbrite.com) |
| Wed (25 Oct) | AI Talks Day 2 | [Eventbrite](https://jan-tech-talks-2.eventbrite.com) |
| Thurs (26 Oct) | VC Night | [Eventbrite](https://jan-hcmc-vc-night.eventbrite.com) |
| Fri (27 Oct) | Jan Launch Party | [Eventbrite](https://jan-launch-party.eventbrite.com) |
| Wed (25 Oct) | AI Talks: LLMs, Tools and Workflows | [Eventbrite](https://jan-tech-talks.eventbrite.sg/) |
| Fri (27 Oct) | Jan Launch Party | [Eventbrite](https://jan-launch-party.eventbrite.sg/) |
### OKRs

View File

@ -117,18 +117,18 @@ const config = {
},
items: [
// Navbar Top
{
type: "docSidebar",
sidebarId: "featuresSidebar",
position: "left",
label: "Platform",
},
{
type: "docSidebar",
sidebarId: "solutionsSidebar",
position: "left",
label: "Solutions",
},
// {
// type: "docSidebar",
// sidebarId: "featuresSidebar",
// position: "left",
// label: "Platform",
// },
// {
// type: "docSidebar",
// sidebarId: "solutionsSidebar",
// position: "left",
// label: "Solutions",
// },
{
type: "docSidebar",
sidebarId: "companySidebar",
@ -136,23 +136,23 @@ const config = {
label: "Company",
},
// Navbar right
{
type: "docSidebar",
sidebarId: "docsSidebar",
position: "right",
label: "Docs",
},
{
type: "docSidebar",
sidebarId: "hardwareSidebar",
position: "right",
label: "Hardware",
},
{
position: "right",
label: "API",
to: "/api",
},
// {
// type: "docSidebar",
// sidebarId: "docsSidebar",
// position: "right",
// label: "Docs",
// },
// {
// type: "docSidebar",
// sidebarId: "hardwareSidebar",
// position: "right",
// label: "Hardware",
// },
// {
// position: "right",
// label: "API",
// to: "/api",
// },
{
href: "https://github.com/janhq/jan",
label: "GitHub",

View File

@ -190,21 +190,21 @@ const sidebars = {
},
],
companySidebar: [
{
type: "category",
label: "About Jan",
collapsible: true,
collapsed: true,
link: { type: "doc", id: "about/about" },
items: [
"about/team",
{
type: "link",
label: "Careers",
href: "https://janai.bamboohr.com/careers",
},
],
},
// {
// type: "category",
// label: "About Jan",
// collapsible: true,
// collapsed: true,
// link: { type: "doc", id: "about/about" },
// items: [
// "about/team",
// {
// type: "link",
// label: "Careers",
// href: "https://janai.bamboohr.com/careers",
// },
// ],
// },
{
type: "category",
label: "Events",
@ -218,14 +218,14 @@ const sidebars = {
},
],
},
{
type: "category",
label: "Company Handbook",
collapsible: true,
collapsed: true,
link: { type: "doc", id: "handbook/handbook" },
items: ["handbook/remote-work"],
},
// {
// type: "category",
// label: "Company Handbook",
// collapsible: true,
// collapsed: true,
// link: { type: "doc", id: "handbook/handbook" },
// items: ["handbook/remote-work"],
// },
],
};