Skip to content

Commit f4a8f5b

Browse files
authored
Merge pull request #1055 from nickvidal/links
docs: fix broken links in about page
2 parents a2b284c + 35cf336 commit f4a8f5b

File tree

6 files changed

+25
-25
lines changed

6 files changed

+25
-25
lines changed

src/components/Charter.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,28 +29,28 @@ class Charter extends Component {
2929
name: 'Use the Data',
3030
text: 'The simplest thing you can do to get involved is to use the data.',
3131
linkText: 'Learn more',
32-
linkUrl: 'https://docs.clearlydefined.io/using-data'
32+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/using-data'
3333
},
3434
{
3535
img: CurateData,
3636
name: 'Curate Data',
3737
text: 'Vet, discuss and merge contributions to the project.',
3838
linkText: 'Learn more',
39-
linkUrl: 'https://docs.clearlydefined.io/data-curation'
39+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/data-curation'
4040
},
4141
{
4242
img: ContributeData,
4343
name: 'Contribute Data',
4444
text: 'Enhacing the data is something that anyone can do.',
4545
linkText: 'Learn more',
46-
linkUrl: 'https://docs.clearlydefined.io/contributing-data'
46+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/contributing-data'
4747
},
4848
{
4949
img: ContributeCode,
5050
name: 'Contribute Code',
5151
text: 'It’s about the data but there is a non-trivial service that drives it.',
5252
linkText: 'Learn more',
53-
linkUrl: 'https://docs.clearlydefined.io/contributing-code'
53+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/contributing-code'
5454
},
5555
{
5656
img: AddHarvest,
@@ -64,7 +64,7 @@ class Charter extends Component {
6464
name: 'Adopt Practices',
6565
text: 'Help ensure that the information for components is correct.',
6666
linkText: 'Learn more',
67-
linkUrl: 'https://docs.clearlydefined.io/adopting'
67+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/adopting'
6868
}
6969
]
7070

src/components/Footer.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ export default class Footer extends Component {
4040
</p>
4141
</div>
4242
<div className="col-md-4 footer-links col-12 ml-md-auto mt-md-0 mt-4">
43-
<Link to="/" className="text-decoration-underline mx-2 d-inline text-white">Terms</Link>
44-
<Link to="/" className="text-decoration-underline mx-2 d-inline text-white">Privacy</Link>
45-
<Link to="/" className="text-decoration-underline mx-2 d-inline text-white">Notices</Link>
43+
<Link to="https://docs.clearlydefined.io/docs/legal/terms" className="text-decoration-underline mx-2 d-inline text-white">Terms</Link>
44+
<Link to="https://docs.clearlydefined.io/docs/legal/privacy" className="text-decoration-underline mx-2 d-inline text-white">Privacy</Link>
45+
<Link to="https://docs.clearlydefined.io/docs/legal/NOTICES" className="text-decoration-underline mx-2 d-inline text-white">Notices</Link>
4646
</div>
4747
</div>
4848
</div>

src/components/GetInvolved.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,28 +29,28 @@ class GetInvolved extends Component {
2929
name: 'Use the Data',
3030
text: 'The simplest thing you can do to get involved is to use the data.',
3131
linkText: 'Learn more',
32-
linkUrl: 'https://docs.clearlydefined.io/using-data'
32+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/using-data'
3333
},
3434
{
3535
img: CurateData,
3636
name: 'Curate Data',
3737
text: 'Vet, discuss and merge contributions to the project.',
3838
linkText: 'Learn more',
39-
linkUrl: 'https://docs.clearlydefined.io/data-curation'
39+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/data-curation'
4040
},
4141
{
4242
img: ContributeData,
4343
name: 'Contribute Data',
4444
text: 'Enhacing the data is something that anyone can do.',
4545
linkText: 'Learn more',
46-
linkUrl: 'https://docs.clearlydefined.io/contributing-data'
46+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/contributing-data'
4747
},
4848
{
4949
img: ContributeCode,
5050
name: 'Contribute Code',
5151
text: 'It’s about the data but there is a non-trivial service that drives it.',
5252
linkText: 'Learn more',
53-
linkUrl: 'https://docs.clearlydefined.io/contributing-code'
53+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/contributing-code'
5454
},
5555
{
5656
img: AddHarvest,
@@ -64,7 +64,7 @@ class GetInvolved extends Component {
6464
name: 'Adopt Practices',
6565
text: 'Help ensure that the information for components is correct.',
6666
linkText: 'Learn more',
67-
linkUrl: 'https://docs.clearlydefined.io/adopting'
67+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/adopting'
6868
}
6969
]
7070

src/components/Header.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class Header extends Component {
117117
<div className="d-flex justify-content-end align-items-center">
118118
<nav className="top-nav px-2 d-flex justify-content-center align-items-center">
119119
<ul role="group">
120-
<NavItem href="https://docs.clearlydefined.io/get-involved">Get Involved</NavItem>
120+
<NavItem href="https://docs.clearlydefined.io/docs/get-involved/intro">Get Involved</NavItem>
121121
{this.renderLogin()}
122122
</ul>
123123
</nav>

src/components/Navigation/Pages/PageStats/PageStats.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,28 +61,28 @@ class PageStats extends Component {
6161
name: 'Use the Data',
6262
text: 'The simplest thing you can do to get involved is to use the data.',
6363
linkText: 'Learn more',
64-
linkUrl: 'https://docs.clearlydefined.io/using-data'
64+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/using-data'
6565
},
6666
{
6767
img: CurateData,
6868
name: 'Curate Data',
6969
text: 'Vet, discuss and merge contributions to the project.',
7070
linkText: 'Learn more',
71-
linkUrl: 'https://docs.clearlydefined.io/data-curation'
71+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/data-curation'
7272
},
7373
{
7474
img: ContributeData,
7575
name: 'Contribute Data',
7676
text: 'Enhacing the data is something that anyone can do.',
7777
linkText: 'Learn more',
78-
linkUrl: 'https://docs.clearlydefined.io/contributing-data'
78+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/contributing-data'
7979
},
8080
{
8181
img: ContributeCode,
8282
name: 'Contribute Code',
8383
text: 'It’s about the data but there is a non-trivial service that drives it.',
8484
linkText: 'Learn more',
85-
linkUrl: 'https://docs.clearlydefined.io/contributing-code'
85+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/contributing-code'
8686
},
8787
{
8888
img: AddHarvest,
@@ -96,7 +96,7 @@ class PageStats extends Component {
9696
name: 'Adopt Practices',
9797
text: 'Help ensure that the information for components is correct.',
9898
linkText: 'Learn more',
99-
linkUrl: 'https://docs.clearlydefined.io/adopting'
99+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/adopting'
100100
}
101101
]
102102

src/components/PageAbout.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,28 +46,28 @@ class PageAbout extends Component {
4646
name: 'Use the Data',
4747
text: 'The simplest thing you can do to get involved is to use the data.',
4848
linkText: 'Learn more',
49-
linkUrl: 'https://docs.clearlydefined.io/using-data'
49+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/using-data'
5050
},
5151
{
5252
img: CurateData,
5353
name: 'Curate Data',
5454
text: 'Vet, discuss and merge contributions to the project.',
5555
linkText: 'Learn more',
56-
linkUrl: 'https://docs.clearlydefined.io/data-curation'
56+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/data-curation'
5757
},
5858
{
5959
img: ContributeData,
6060
name: 'Contribute Data',
6161
text: 'Enhacing the data is something that anyone can do.',
6262
linkText: 'Learn more',
63-
linkUrl: 'https://docs.clearlydefined.io/contributing-data'
63+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/contributing-data'
6464
},
6565
{
6666
img: ContributeCode,
6767
name: 'Contribute Code',
6868
text: 'It’s about the data but there is a non-trivial service that drives it.',
6969
linkText: 'Learn more',
70-
linkUrl: 'https://docs.clearlydefined.io/contributing-code'
70+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/contributing-code'
7171
},
7272
{
7373
img: AddHarvest,
@@ -81,7 +81,7 @@ class PageAbout extends Component {
8181
name: 'Adopt Practices',
8282
text: 'Help ensure that the information for components is correct.',
8383
linkText: 'Learn more',
84-
linkUrl: 'https://docs.clearlydefined.io/adopting'
84+
linkUrl: 'https://docs.clearlydefined.io/docs/get-involved/adopting'
8585
}
8686
]
8787

@@ -96,7 +96,7 @@ class PageAbout extends Component {
9696
<p className="about-description">
9797
Welcome to your centralized and curated data store for Open Source Software licenses.
9898
</p>
99-
<a className="btn-mkt" href="https://docs.clearlydefined.io/get-involved">
99+
<a className="btn-mkt" href="https://docs.clearlydefined.io/docs/get-involved/intro">
100100
Get Involved
101101
</a>
102102
</div>

0 commit comments

Comments
 (0)