-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update top nav links * Add admonition to homepage
- Loading branch information
1 parent
4c48de4
commit a65eaa2
Showing
5 changed files
with
69 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { OutdatedBlockquote } from './outdated-blockquote.view'; |
27 changes: 27 additions & 0 deletions
27
src/components/pages/doc-welcome/outdated-blockquote/outdated-blockquote.view.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import Blockquote from 'components/shared/blockquote'; | ||
import React from 'react'; | ||
|
||
export const OutdatedBlockquote = () => ( | ||
<div> | ||
<Blockquote mod="attention"> | ||
<p> | ||
We've migrated the k6 documentation to Grafana!{' '} | ||
<a | ||
className="link" | ||
href="https://k6.io/docs/javascript-api/k6-experimental/grpc/" | ||
> | ||
Click here | ||
</a>{' '} | ||
to view the latest version of the k6 documentation. | ||
<br /> | ||
<br /> | ||
This page is still available for users to be able to view the{' '} | ||
<a className="link" href="https://k6.io/docs/cloud/"> | ||
k6 Cloud documentation | ||
</a> | ||
, and will be removed at a later date. | ||
</p> | ||
</Blockquote> | ||
<br /> | ||
</div> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters