Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/docs/apply-trial-license.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const ApplyTrialLicense = ({ showBorder = true }) => {
<NextLink
className="text-nowrap ml-1 font-normal text-primary hover:underline"
target="_blank"
href="mailto:sales@lxware.hk"
href="https://www.jumpserver.com/free-trial"
>
Contact us <Icon name="send" />
</NextLink>{" "}
Expand Down
4 changes: 1 addition & 3 deletions src/components/theme/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import Logo from "./logo";
import React from "react";
import { GitHubIcon, DiscordIcon, XIcon } from "@/icons";


const FooterNavbar = () => {
return (
<ul className="flex items-center justify-start gap-4 text-center">
Expand Down Expand Up @@ -38,7 +37,6 @@ const FooterNavbar = () => {
);
};


function List({
title,
items,
Expand Down Expand Up @@ -94,7 +92,7 @@ function Footer() {
<List
title="Company"
items={[
{ title: "About Us", url: "https://www.lxware.hk/pages/about" },
{ title: "About Us", url: "https://www.jumpserver.com/about" },
]}
/>
</div>
Expand Down
10 changes: 4 additions & 6 deletions src/pages/_meta.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
{
"index": {
"home": {
"title": "Home",
"type": "page",
"theme": {
"layout": "raw"
}
"route": "https://www.jumpserver.com/"
},
"pricing": {
"title": "Pricing",
"type": "page",
"route": "/#section-edition"
"route": "https://www.jumpserver.com/#features-JumpServer%20Enterprise%20Edition"
},
"docs": {
"title": "Docs",
Expand All @@ -18,6 +16,6 @@
"about": {
"title": "About",
"type": "page",
"route": "https://www.lxware.hk/pages/about"
"route": "https://www.jumpserver.com/about"
}
}
2 changes: 1 addition & 1 deletion theme.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export const LinkTitle: React.FC<LinkTitleProps> = ({ title, url }) => {
);
};


const config: DocsThemeConfig = {
components: {
Icon, Alert, Cards, Card,
Expand All @@ -51,6 +50,7 @@ const config: DocsThemeConfig = {
</>
),
logo: Logo,
logoLink: "https://www.jumpserver.com/",
feedback: {
useLink: () =>
"https://github.com/jumpserver/jumpserver/issues/new?labels=%F0%9F%A4%94+Question&projects=&template=3_question.yml&title=%5BQuestion%5D+",
Expand Down