Skip to content

Commit 6a9449e

Browse files
committed
migrate links to crossid.io website
1 parent 218987c commit 6a9449e

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

docusaurus.config.js

+7-8
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,18 @@ module.exports = {
4545
},
4646
items: [
4747
{
48-
type: "doc",
49-
docId: "guides/get_started/preface",
48+
href: "https://crossid.io/docs",
5049
label: "Docs",
5150
position: "left",
5251
},
52+
{ href: "https://crossid.io/blog", label: "Blog", position: "left" },
5353
{
5454
to: "/api/v1",
5555
label: "API",
5656
position: "left",
5757
},
58-
{ to: "blog", label: "Blog", position: "left" },
5958
{
60-
to: "/support",
59+
href: "https://crossid.io/support",
6160
label: "Support",
6261
position: "right",
6362
},
@@ -77,7 +76,7 @@ module.exports = {
7776
items: [
7877
{
7978
label: "Get Started",
80-
to: "docs/guides/get-started",
79+
href: "https://crossid.io/docs",
8180
},
8281
{
8382
label: "Reference",
@@ -106,12 +105,12 @@ module.exports = {
106105
title: "More",
107106
items: [
108107
{
109-
label: "Crossid Website",
108+
label: "crossid.io",
110109
href: "https://crossid.io",
111110
},
112111
{
113112
label: "Blog",
114-
to: "blog",
113+
href: "https://crossid.io/blog",
115114
},
116115
{
117116
label: "GitHub",
@@ -128,7 +127,7 @@ module.exports = {
128127
},
129128
{
130129
label: "About",
131-
href: "https://www.crossid.io/company",
130+
href: "https://crossid.io/company",
132131
},
133132
],
134133
},

src/pages/index.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import styles from "./styles.module.css";
99
const features = [
1010
{
1111
title: "Guides",
12-
to: "/docs/guides/get-started",
12+
to: "https://crossid.io/docs",
1313
imageUrl: "img/undraw_guides.svg",
1414
description: (
1515
<>
@@ -19,7 +19,7 @@ const features = [
1919
},
2020
{
2121
title: "Concepts",
22-
to: "/docs/concepts/application",
22+
to: "https://crossid.io/docs/concepts/application",
2323
imageUrl: "img/undraw_concepts.svg",
2424
description: <>How CrossID Works.</>,
2525
},
@@ -63,15 +63,15 @@ function Home() {
6363
<h1 className="hero__title">{siteConfig.title}</h1>
6464
<p className="hero__subtitle">{siteConfig.tagline}</p>
6565
<div className={styles.buttons}>
66-
<Link
66+
<a
6767
className={clsx(
6868
"button button--outline button--primary button--lg",
6969
styles.getStarted
7070
)}
71-
to={useBaseUrl("docs/guides/get-started")}
71+
href={"https://crossid.io/docs"}
7272
>
7373
Get Started
74-
</Link>
74+
</a>
7575
</div>
7676
</div>
7777
</header>

0 commit comments

Comments
 (0)