-
Notifications
You must be signed in to change notification settings - Fork 0
Under construction #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
4368728
added under construction component, so landing page links can be clea…
beforan e20416d
added PR template, mainly to help ensure metadata inclusion
beforan 78010c2
started adding under construction to non-existent linked pages, and e…
beforan da2dd95
fixing merge conflict error
beforan 4a31fef
updating existing component filenames to PascalCase
beforan 646c208
fixing call to action link icons and display
beforan fbaf5a1
journey structure and landing page link updates
beforan c002276
loading page placeholders
beforan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,37 @@ | ||
| # Description | ||
|
|
||
| <!-- Describe what's in this PR / what it does --> | ||
|
|
||
|
|
||
| ## Review checks | ||
|
|
||
| <!-- No author action required beyond this point --> | ||
|
|
||
| ### Metadata | ||
|
|
||
| #### Frontmatter | ||
| - [ ] `<DocMetadata />` component at top of document | ||
| - [ ] `docType` | ||
| - `journey` - A page of curated suggested documents for a persona or purpose | ||
| - `explanation` per [Diataxis] | ||
| - `tutorial` per [Diataxis] | ||
| - `guide` per [Diataxis] | ||
| - `reference` per [Diataxis] | ||
| - Category or splash pages do not require this | ||
| - [ ] `readingTime` in [ISO 8601 Duration] format | ||
| - Only required for `explanation`, `tutorial` and `guide` | ||
| - [ ] `audiences` - one or more target audiences for the content | ||
| - `federation-operator` | ||
| - `tre-operator` | ||
| - `researcher` | ||
| - `integrator` | ||
| - `contributor` | ||
| - `everyone` | ||
|
|
||
| #### Content | ||
|
|
||
| - [ ] Prerequisites, if appropriate | ||
| - [ ] Next steps, if appropriate | ||
|
|
||
| [diataxis]: https://diataxis.fr/ | ||
| [ISO 8601 Duration]: https://en.wikipedia.org/wiki/ISO_8601#Durations | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -1,9 +1,17 @@ | ||
| export default { | ||
| connect: "Connect", | ||
| "co-ordinate": "Co-ordinate", | ||
| index: { | ||
| display: "hidden" | ||
| }, | ||
|
|
||
| // Welcome Report URL redirect, never show in nav | ||
| five_safes_tes: { | ||
| display: "hidden" | ||
| } | ||
| }, | ||
|
|
||
| // exclude routes until content published | ||
| "journeys": { | ||
| display: "hidden" | ||
| }, | ||
|
|
||
| // TODO: restructure content and move "connect" journey page | ||
| }; |
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| --- | ||
| docType: guide | ||
| readingTime: PT10M | ||
| audiences: tre-operator | ||
| --- | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| --- | ||
| docType: guide | ||
| readingTime: PT5M | ||
| audiences: tre-operator | ||
| --- | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| --- | ||
| docType: guide | ||
| readingTime: PT15M | ||
| audiences: tre-operator | ||
| --- | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
| @@ -1,6 +1,11 @@ | ||
| --- | ||
| docType: journey | ||
| title: Connect | ||
| asIndexPage: true | ||
| --- | ||
|
|
||
| # Connect | ||
|
|
||
| import {UnderConstruction} from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| --- | ||
| docType: reference | ||
| readingTime: PT30M | ||
| audiences: tre-operator | ||
| --- | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| --- | ||
| docType: guide | ||
| readingTime: PT45M | ||
| audiences: tre-operator | ||
| --- | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
| @@ -1,6 +1,11 @@ | ||
| --- | ||
| docType: journey | ||
| title: Setup TRE Agent | ||
| asIndexPage: true | ||
| --- | ||
|
|
||
| # Setup TRE Agent Journeys | ||
|
|
||
| import {UnderConstruction} from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| --- | ||
| docType: guide | ||
| readingTime: PT45M | ||
| audiences: tre-operator | ||
| --- | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| --- | ||
| docType: explanation | ||
| readingTime: PT20M | ||
| audiences: tre-operator | ||
| --- | ||
|
|
||
This file contains hidden or 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,5 @@ | ||
| export default { | ||
| // exclude routes until content published | ||
| // setup_sub_layer: "Setup Submission Layer", | ||
| // management: "Management", | ||
| }; |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,11 @@ | ||
| --- | ||
| docType: journey | ||
| title: Co-ordinate | ||
| asIndexPage: true | ||
| --- | ||
|
|
||
| # Co-ordinate | ||
|
|
||
| import {UnderConstruction} from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,9 @@ | ||
| --- | ||
| docType: journey | ||
| title: Connect | ||
| asIndexPage: true | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,11 @@ | ||
| --- | ||
| docType: journey | ||
| title: Contribute | ||
| asIndexPage: true | ||
| --- | ||
|
|
||
| # Contribute | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,11 @@ | ||
| --- | ||
| docType: journey | ||
| title: Integrate | ||
| asIndexPage: true | ||
| --- | ||
|
|
||
| # Integrate | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,11 @@ | ||
| --- | ||
| docType: journey | ||
| title: Learn | ||
| asIndexPage: true | ||
| --- | ||
|
|
||
| # Learn | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,11 @@ | ||
| --- | ||
| docType: journey | ||
| title: Research | ||
| asIndexPage: true | ||
| --- | ||
|
|
||
| # Research | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
This file contains hidden or 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,7 @@ | ||
| --- | ||
| # TODO: move to correct structure when content added | ||
| --- | ||
|
|
||
| import { UnderConstruction } from "@/components/UnderConstruction"; | ||
|
|
||
| <UnderConstruction /> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great idea