fix: update links

This commit is contained in:
0xSage 2023-10-18 16:52:23 +08:00
parent d48cf3b431
commit a5696f25ee
4 changed files with 16 additions and 14 deletions

View File

@ -13,7 +13,7 @@
<p align="center"> <p align="center">
<a href="https://docs.jan.ai/">Getting Started</a> - <a href="https://docs.jan.ai">Docs</a> <a href="https://docs.jan.ai/">Getting Started</a> - <a href="https://docs.jan.ai">Docs</a>
- <a href="https://docs.jan.ai/changelog/">Changelog</a> - <a href="https://github.com/janhq/jan/issues">Bug reports</a> - <a href="https://discord.gg/AsJ8krTT3N">Discord</a> - <a href="https://github.com/janhq/jan/releases">Changelog</a> - <a href="https://github.com/janhq/jan/issues">Bug reports</a> - <a href="https://discord.gg/AsJ8krTT3N">Discord</a>
</p> </p>
> ⚠️ **Jan is currently in Development**: Expect breaking changes and bugs! > ⚠️ **Jan is currently in Development**: Expect breaking changes and bugs!
@ -66,6 +66,7 @@ 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. > See the open source Nitro codebase at https://nitro.jan.ai.
## Troubleshooting ## Troubleshooting
As Jan is development mode, you might get stuck on a broken build. As Jan is development mode, you might get stuck on a broken build.
To reset your installation: To reset your installation:

View File

@ -9,7 +9,7 @@ import { BiLogoDiscordAlt } from "react-icons/bi";
const socials = [ const socials = [
{ {
icon: <AiOutlineTwitter className="text-xl text-white" />, icon: <AiOutlineTwitter className="text-xl text-white" />,
href: "https://twitter.com/jan_dotai", href: "https://twitter.com/janhq_",
}, },
{ {
icon: <BiLogoDiscordAlt className="text-xl text-white" />, icon: <BiLogoDiscordAlt className="text-xl text-white" />,

View File

@ -22,20 +22,21 @@ const menus = [
name: "For Developers", name: "For Developers",
child: [ child: [
{ {
menu: "Documentations", menu: "Documentation (WIP)",
path: "/docs", path: "/docs",
}, },
{ {
menu: "Hardware", menu: "Hardware (WIP)",
path: "/hardware", path: "/hardware",
}, },
{ {
menu: "API", menu: "API (WIP)",
path: "/api", path: "/api",
}, },
{ {
menu: "Changelog", menu: "Changelog",
path: "/changelog", path: "https://github.com/janhq/jan/releases",
external: true,
}, },
], ],
}, },
@ -54,7 +55,7 @@ const menus = [
}, },
{ {
menu: "Twitter", menu: "Twitter",
path: "https://twitter.com/jan_dotai", path: "https://twitter.com/janhq_",
external: true, external: true,
}, },
], ],

View File

@ -13,7 +13,7 @@ const SidebarFooter: React.FC = () => (
<SecondaryButton <SecondaryButton
title={"Twitter"} title={"Twitter"}
onClick={() => onClick={() =>
window.electronAPI?.openExternalUrl("https://twitter.com/jan_dotai") window.electronAPI?.openExternalUrl("https://twitter.com/janhq_")
} }
className="flex-1" className="flex-1"
/> />