Skip to content

Commit

Permalink
Add link in /notfound to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fongsean committed May 23, 2024
1 parent 2264ad0 commit 9c41fcb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import LocalFireDepartmentIcon from '@mui/icons-material/LocalFireDepartment';
import StorageIcon from '@mui/icons-material/Storage';
import DataSaverOnIcon from '@mui/icons-material/DataSaverOn';
import GitHubIcon from '@mui/icons-material/GitHub';
import MenuBookIcon from '@mui/icons-material/MenuBook';

interface QuickLinkCardProps {
title: string;
Expand Down Expand Up @@ -61,6 +62,12 @@ const quickLinkCards: QuickLinkCardProps[] = [
description: 'View the GitHub page for this open-source project.',
link: 'https://github.com/aehrc/smart-forms',
icon: <GitHubIcon fontSize="large" color="primary" />
},
{
title: 'Documentation',
description: 'Showcases Questionnaire components, SDC extensions and developer usage.',
link: 'https://smartforms.csiro.au/docs',
icon: <MenuBookIcon fontSize="large" color="primary" />
}
];

Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ It is intended to demonstrate the use of [HL7 FHIR](https://hl7.org/fhir/) speci
This documentation is intended to provide a guide on how to use Smart Forms. It is divided into the following sections:
- [Components](/smart-forms/docs/components): A showcase of supported Questionnaire form components.
- [SDC](/smart-forms/docs/sdc): A section around the conformance and usage of functionalities defined in the SDC specification.
- [Developer Usage](/smart-forms/docs/devUsage): A guide on how to use the form-rendering engine in your own application.
- [Developer Usage](/smart-forms/docs/devUsage): A guide on how to use the form renderer in your own application.

### Referenced FHIR Specifications

Expand Down

0 comments on commit 9c41fcb

Please sign in to comment.