Skip to content

Commit 1676076

Browse files
committed
feat: update home page with new images
1 parent 45ea3a6 commit 1676076

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

Diff for: apps/docs/src/pages/index.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -333,8 +333,8 @@ export default function Home() {
333333
{/* Right Hero */}
334334
<div className="lg:rounded-tr-0 lg:left-100 relative mt-24 flex h-80 w-auto overflow-hidden rounded-bl-[80px] rounded-tr-[80px] bg-[#F1F4F9] px-4 sm:h-[32rem] lg:absolute lg:inset-y-0 lg:left-1/2 lg:right-0 lg:mt-0 lg:block lg:h-4/5 lg:w-full lg:overflow-visible lg:px-0 lg:pt-6">
335335
<img
336-
className="fadeIn m-5 mx-auto self-center rounded-md opacity-0 sm:max-w-xl lg:absolute lg:-bottom-10 lg:mx-0 lg:mb-0 lg:ml-10 lg:mt-20 lg:h-5/6 lg:w-auto lg:max-w-5xl lg:self-center lg:rounded-2xl lg:p-0"
337-
src="/img/timeline-desktop.webp"
336+
className="fadeIn m-5 mx-auto self-center rounded-md opacity-0 sm:max-w-xl lg:absolute lg:-bottom-10 lg:mx-0 lg:mb-0 lg:ml-10 lg:mt-20 lg:h-5/6 lg:w-auto lg:max-w-7xl lg:self-center lg:rounded-2xl lg:p-0"
337+
src="/img/timeline-desktop.png"
338338
alt="web timeline screenshot"
339339
/>
340340
</div>
@@ -427,7 +427,7 @@ export default function Home() {
427427
<div className="mt-12 flex aspect-square items-center justify-center overflow-hidden rounded-2xl lg:mt-0">
428428
<img
429429
className="h-full max-h-[512px] w-auto max-w-[512px] object-cover"
430-
src="/img/solution.webp"
430+
src="/img/solution.png"
431431
alt=""
432432
/>
433433
</div>
File renamed without changes.

Diff for: apps/docs/static/img/solution.png

61.2 KB
Loading

Diff for: apps/docs/static/img/timeline-desktop.png

216 KB
Loading

Diff for: apps/web/src/components/providers/vector-provider/helpers/prepareClinicalDocumentForVectorization.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -168,12 +168,12 @@ function serializeCCDADocumentForVectorization(
168168
content: string,
169169
meta: DocMeta,
170170
documentId: string,
171-
chunkedDocumentsList: Array<{
171+
chunkedDocumentsList: {
172172
id: string;
173173
text: string;
174174
chunk?: IVSChunkMeta;
175-
}>,
176-
chunkedMetadataList: Array<DocMeta>,
175+
}[],
176+
chunkedMetadataList: DocMeta[],
177177
) {
178178
const parsed = parseCCDARaw(content);
179179
// for each section, serialize and chunk

Diff for: apps/web/src/pages/TimelineTab.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ export function TimelineTab() {
6161
[scrollY, setScrollY] = useState(0);
6262

6363
const yearMap = useMemo(() => {
64-
const newYearMap: Map<
64+
const newYearMap = new Map<
6565
string,
6666
Record<string, ClinicalDocument<BundleEntry<FhirResource>>[]>
67-
> = new Map();
67+
>();
6868

6969
if (data) {
7070
for (const [dateKey, itemList] of Object.entries(data)) {
File renamed without changes.

Diff for: images/timeline-desktop.png

216 KB
Loading

Diff for: package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)