diff --git a/src/app/components/ContentContainer/ContentContainer.tsx b/src/app/components/ContentContainer/ContentContainer.tsx
index 4ef3380..ea95744 100644
--- a/src/app/components/ContentContainer/ContentContainer.tsx
+++ b/src/app/components/ContentContainer/ContentContainer.tsx
@@ -10,19 +10,16 @@ export function ContentContainer({
children,
align = false,
classes = '',
- sectionClasses = '',
}: ContentContainerProps) {
const defaultClasses =
'ml-auto mr-auto flex max-w-[87.5rem] flex-col px-10 py-4 sm:px-14 sm:py-20';
return (
-
+
+ {children}
+
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index c64b7a6..bb91614 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -12,63 +12,69 @@ import styles from './_styles/Homepage.module.scss';
import { InvitationCta } from './components/InvitationCta/InvitationCta';
const DibbsSection = () => (
-
-
- Introducing Data Integration Building Blocks
-
-
-
- {homeContent.dibbs.description}
-
-
- {homeContent.dibbs.benefits.map((benefit, index) => (
- -
- {benefit}
-
- ))}
-
-
-
-
-);
-
-const ValueSection = () => {
- const { valueSection } = homeContent;
-
- return (
-
+
-
-
- {valueSection.title}
-
-
- {valueSection.description}
+
+ Introducing Data Integration Building Blocks
+
+
+
+ {homeContent.dibbs.description}
-
-
- {valueSection.ctaText}
-
-
+
+ {homeContent.dibbs.benefits.map((benefit, index) => (
+ -
+ {benefit}
+
+ ))}
+
-
+
+
+);
+
+const ValueSection = () => {
+ const { valueSection } = homeContent;
+
+ return (
+
+
+
+
+
+
+ {valueSection.title}
+
+
+ {valueSection.description}
+
+
+
+ {valueSection.ctaText}
+
+
+
+
+
+
+
);
};
@@ -77,17 +83,19 @@ const JurisdictionSection = () => {
return (
<>
-
-
-
-
-
{jurisdictions.title}
-
- {jurisdictions.description}
-
-
+
+
+
+
+
+
{jurisdictions.title}
+
+ {jurisdictions.description}
+
+
+
-
+
diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
index 8d9fc2d..a5cc7ad 100644
--- a/src/app/products/page.tsx
+++ b/src/app/products/page.tsx
@@ -23,53 +23,55 @@ function StandaloneProducts() {
return (
- Standalone Products
-
+ imgSrc={`${basePath}/images/placeholder.png`}
+ linkText="Learn more about eCR Refiner"
+ linkToHref=""
+ linkVariant="secondary"
+ />
+
+
);
}
@@ -150,82 +152,84 @@ function DataPipelineGrid({ children }: DataPipelineGridProps) {
function DataPipeline() {
return (
-
-
-
-
DIBBs to support the entire data pipeline
-
- These are the underlying services that power each of our products;
- they can be configured in a variety of ways to support the unique
- needs of your jurisdiction.
-
+
+
+
+
+
DIBBs to support the entire data pipeline
+
+ These are the underlying services that power each of our products;
+ they can be configured in a variety of ways to support the unique
+ needs of your jurisdiction.
+
+
-
-
- FOR DATA PROCESSING
-
-
-
+ FOR DATA PROCESSING
+
+
+
-
-
-
-
- FOR DATA ENRICHMENT
-
-
-
-
-
-
-
- FOR DATA TRANSFORMATION
-
-
-
-
-
+ imgSrc={`${basePath}/icons/our-products/fhirConverter.svg`}
+ />
+
+
+
+ FOR DATA ENRICHMENT
+
+
+
+
+
+
+
+ FOR DATA TRANSFORMATION
+
+
+
+
+
+
);
}