Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions public/images/text-to-code-img.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import QueryConnectorImg from "../../public/images/query-connector-img.svg";
import RecordLinkerImg from "../../public/images/record-linker-img.svg";
import ECRViewerImg from "../../public/images/ecr-viewer-img.svg";
import ECRRefinerImg from "../../public/images/ecr-refiner-img.svg";
import TextToCodeImg from "../../public/images/text-to-code-img.svg";
import HomeStyle from "./home.module.scss";
import "../styles/index.scss";
import Image from "next/image";
Expand Down Expand Up @@ -93,6 +94,20 @@ const Home: React.FC = () => {
demoLink={PAGES.ECR_REFINER}
githubLink={PAGES.ECR_REFINER_REPO}
/>
<Card
title="Text to Code"
description="Makes it easier for public health staff to find relevant information in eCR documents. It combines both the eICR and RR records into a single view and highlights relevant lab or clinical information for conditions present in the eCR. This demo is best viewed on desktop."
image={
<Image
className={classNames(cardImgClasses)}
alt=""
src={TextToCodeImg}
/>
}
// demoLink={PAGES.TEXT_TO_CODE}
githubLink={PAGES.TEXT_TO_CODE_REPO}
bgColor={BgColorType.PURPLE}
/>
</div>
</div>
<Subfooter />
Expand Down
2 changes: 2 additions & 0 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ export const PAGES = {
QUERY_CONNECTOR: "https://connector.dibbs.tools",
SIMPLE_REPORT: "https://demo.simplereport.gov/app/pilot/report",
RECORD_LINKER: "https://linker.dibbs.tools",
TEXT_TO_CODE: "https://ttc.dibbs.tools",
// repo urls
QUERY_CONNECTOR_REPO: "https://github.com/CDCgov/dibbs-query-connector",
RECORD_LINKER_REPO: "https://github.com/CDCgov/RecordLinker",
ECR_VIEWER_REPO: "https://github.com/CDCgov/dibbs-ecr-viewer",
ECR_REFINER_REPO: "https://github.com/CDCgov/dibbs-ecr-refiner",
TEXT_TO_CODE_REPO: "https://github.com/CDCgov/dibbs-text-to-code",
// credentials
QUERY_CONNECTOR_USERNAME: "mario@dibbs.tools",
QUERY_CONNECTOR_PASSWORD: "Nye6KpjgkHWT",
Expand Down