diff --git a/README.md b/README.md index 39b8ec1d8..2b65f2bde 100644 --- a/README.md +++ b/README.md @@ -13,14 +13,14 @@

Getting Started - Docs - - Changelog - Bug reports - Discord + - Changelog - Bug reports - Discord

> ⚠️ **Jan is currently in Development**: Expect breaking changes and bugs! -Jan runs Large Language Models and AIs on your own Windows, Mac or Linux computer. Jan can be run as a desktop app, or as a cloud-native deployment. +Jan runs Large Language Models and AIs on your own Windows, Mac or Linux computer. Jan can be run as a desktop app, or as a cloud-native deployment. -Jan is free and open source, under the GPLv3 license. +Jan is free and open source, under the GPLv3 license. **Jan runs on any hardware.** From PCs to multi-GPU clusters, Jan supports universal architectures: @@ -66,16 +66,17 @@ In the background, Jan runs [Nitro](https://nitro.jan.ai), an open source, C++ i > See the open source Nitro codebase at https://nitro.jan.ai. ## Troubleshooting + As Jan is development mode, you might get stuck on a broken build. -To reset your installation: +To reset your installation: 1. Delete Jan Application from /Applications 1. Clear cache: -`rm -rf /Users/$(whoami)/Library/Application\ Support/jan-electron` -OR -`rm -rf /Users/$(whoami)/Library/Application\ Support/jan` + `rm -rf /Users/$(whoami)/Library/Application\ Support/jan-electron` + OR + `rm -rf /Users/$(whoami)/Library/Application\ Support/jan` --- diff --git a/docs/src/components/Announcement/index.js b/docs/src/components/Announcement/index.js index fcefeae07..922be62f7 100644 --- a/docs/src/components/Announcement/index.js +++ b/docs/src/components/Announcement/index.js @@ -9,7 +9,7 @@ import { BiLogoDiscordAlt } from "react-icons/bi"; const socials = [ { icon: , - href: "https://twitter.com/jan_dotai", + href: "https://twitter.com/janhq_", }, { icon: , diff --git a/docs/src/components/Footer/index.js b/docs/src/components/Footer/index.js index 6405fc412..d6bfca608 100644 --- a/docs/src/components/Footer/index.js +++ b/docs/src/components/Footer/index.js @@ -22,20 +22,21 @@ const menus = [ name: "For Developers", child: [ { - menu: "Documentations", + menu: "Documentation (WIP)", path: "/docs", }, { - menu: "Hardware", + menu: "Hardware (WIP)", path: "/hardware", }, { - menu: "API", + menu: "API (WIP)", path: "/api", }, { menu: "Changelog", - path: "/changelog", + path: "https://github.com/janhq/jan/releases", + external: true, }, ], }, @@ -54,7 +55,7 @@ const menus = [ }, { menu: "Twitter", - path: "https://twitter.com/jan_dotai", + path: "https://twitter.com/janhq_", external: true, }, ], diff --git a/docs/src/pages/index.js b/docs/src/pages/index.js index 611ddeff3..1325920b8 100644 --- a/docs/src/pages/index.js +++ b/docs/src/pages/index.js @@ -54,7 +54,11 @@ export default function Home() { return ( <> - +
diff --git a/docs/src/styles/main.scss b/docs/src/styles/main.scss index aedd89119..ea6e4f723 100644 --- a/docs/src/styles/main.scss +++ b/docs/src/styles/main.scss @@ -1,8 +1,8 @@ -@import 'tailwindcss/base'; -@import 'tailwindcss/components'; -@import 'tailwindcss/utilities'; +@import "tailwindcss/base"; +@import "tailwindcss/components"; +@import "tailwindcss/utilities"; -@import './typography.scss'; -@import './tweaks.scss'; -@import './base.scss'; -@import './components.scss'; +@import "./typography.scss"; +@import "./tweaks.scss"; +@import "./base.scss"; +@import "./components.scss"; diff --git a/docs/src/styles/tweaks.scss b/docs/src/styles/tweaks.scss index 08c49d9fd..9def1c493 100644 --- a/docs/src/styles/tweaks.scss +++ b/docs/src/styles/tweaks.scss @@ -4,11 +4,11 @@ } } -.col.docItemCol_node_modules-\@docusaurus-theme-classic-lib-theme-DocItem-Layout-styles-module { +[class*="docItemCol_"] { @apply p-4 lg:px-16 lg:py-4; } -.breadcrumbsContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocBreadcrumbs-styles-module { +[class*="breadcrumbsContainer_"] { margin-bottom: 40px !important; } @@ -21,7 +21,7 @@ padding: 32px 10px; } -.iconExternalLink_node_modules-\@docusaurus-theme-classic-lib-theme-Icon-ExternalLink-styles-module { +[class*="iconExternalLink_"] { display: none; } @@ -41,10 +41,6 @@ .navbar-sidebar__close { width: 14px; } - // .toggle_node_modules-\@docusaurus-theme-classic-lib-theme-ColorModeToggle-styles-module { - // width: 24px; - // height: 24px; - // } } .navbar__title { @@ -71,8 +67,8 @@ } } -.docMainContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Main-styles-module, -.docSidebarContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-styles-module { +[class*="docMainContainer_"], +[class*="docSidebarContainer_"] { @apply bg-gray-50 dark:bg-gray-950/95; } @@ -80,13 +76,12 @@ @apply bg-gray-50 dark:bg-gray-900; } -.docSidebarContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-styles-module, -.table-of-contents__left-border { +.theme-doc-sidebar-container { @apply border-gray-200 dark:border-gray-800; } -.docMainContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Main-styles-module, -.docSidebarContainer_node_modules-\@docusaurus-theme-classic-lib-theme-DocPage-Layout-Sidebar-styles-module { +[class*="docMainContainer_"], +[class*="docSidebarContainer_"] { table { a { @apply text-blue-600 dark:text-blue-400; diff --git a/docs/static/img/jan-social-card.png b/docs/static/img/jan-social-card.png index ed606e685..e1574eabc 100644 Binary files a/docs/static/img/jan-social-card.png and b/docs/static/img/jan-social-card.png differ diff --git a/web/app/_components/SidebarFooter/index.tsx b/web/app/_components/SidebarFooter/index.tsx index c9c075240..cedbbe883 100644 --- a/web/app/_components/SidebarFooter/index.tsx +++ b/web/app/_components/SidebarFooter/index.tsx @@ -13,7 +13,7 @@ const SidebarFooter: React.FC = () => ( - window.electronAPI?.openExternalUrl("https://twitter.com/jan_dotai") + window.electronAPI?.openExternalUrl("https://twitter.com/janhq_") } className="flex-1" />