From cf374fb56abf8912a62a2417a4174005c597d6e2 Mon Sep 17 00:00:00 2001 From: Rostislav Antonov Date: Wed, 28 Jun 2023 16:00:44 +0200 Subject: [PATCH] add descriptions in samples cards --- examples/src/App.tsx | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/examples/src/App.tsx b/examples/src/App.tsx index a8d9635..e5f09d7 100644 --- a/examples/src/App.tsx +++ b/examples/src/App.tsx @@ -5,24 +5,24 @@ import { SampleCard } from './components/SampleCard.js' const sampleCardsInfo = [ { title: 'Personal Health Record', - body: 'Some PHR description Some PHR description Some PHR description Some PHR description Some PHR description', + body: 'It is a record of a patient\'s health information that you, as a patient, keep track of. It includes data about your health and other important details related to your care.', sampleLink: '/phr', readmeLink: - 'https://github.com/Aidbox/aidbox-sdk-js/blob/main/examples/personal-health-record/README.md' + 'https://github.com/Aidbox/aidbox-sdk-js/tree/main/examples/personal-health-record/README.md' }, { title: 'Complex Query', - body: 'Some PHR description Some PHR description Some PHR description Some PHR description Some PHR description', + body: 'It is an example of how you can store complex queries in Aidbox.', sampleLink: '/complex-query', readmeLink: - 'https://github.com/Aidbox/aidbox-sdk-js/blob/main/examples/how-to-make-aidbox-complex-query/README.md' + 'https://github.com/Aidbox/aidbox-sdk-js/tree/main/examples/aidbox-querying/README.md' }, { title: 'Aidbox Subscriptions', - body: 'Some PHR description Some PHR description Some PHR description Some PHR description Some PHR description', + body: 'This example shows the complete flow of using Aidbox subscriptions in integration with a queue, starting from creating a subscription and ending with the implementation of the final business logic.', sampleLink: '/subscriptions', readmeLink: - 'https://github.com/Aidbox/aidbox-sdk-js/blob/main/examples/how-to-react-on-aidbox-data-changes/README.md' + 'https://github.com/Aidbox/aidbox-sdk-js/tree/main/examples/aidbox-subscription/README.md' } ] @@ -31,9 +31,21 @@ export const App = () => { + + Hello! Here, we have compiled examples that showcase the key features of Aidbox + and provide guidance on how to utilize them effectively with our SDK. + +