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. 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 ## Acknowledgements
Jan builds on top of other open-source projects: Jan builds on top of other open-source projects:
- [llama.cpp](https://github.com/ggerganov/llama.cpp) - [llama.cpp](https://github.com/ggerganov/llama.cpp)
- [TensorRT](https://github.com/NVIDIA/TensorRT) - [TensorRT](https://github.com/NVIDIA/TensorRT)
- [Keycloak Community](https://github.com/keycloak/keycloak) (Apache-2.0)
## Contact ## 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 | | Day | Eventbrite Link | Signups |
| -------------- | -------------------------- | ------------------------------------------------------ | | -------------- | -------------------------- | ------------------------------------------------------ |
| Mon (23 Oct) | Jan Team & Partners Dinner | Invite-only | | 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: LLMs, Tools and Workflows | [Eventbrite](https://jan-tech-talks.eventbrite.sg/) |
| Wed (25 Oct) | AI Talks Day 2 | [Eventbrite](https://jan-tech-talks-2.eventbrite.com) | | Fri (27 Oct) | Jan Launch Party | [Eventbrite](https://jan-launch-party.eventbrite.sg/) |
| 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) |
### OKRs ### OKRs

View File

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

View File

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