From c460182001df3c86bbd5bbb8ea81496d753eb82a Mon Sep 17 00:00:00 2001 From: Jake Wheeler Date: Mon, 9 Dec 2024 09:42:40 -0500 Subject: [PATCH] remove sections from content container --- .../ContentContainer/ContentContainer.tsx | 17 +- src/app/page.tsx | 124 +++++----- src/app/products/page.tsx | 216 +++++++++--------- 3 files changed, 183 insertions(+), 174 deletions(-) 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} -
-
+
+ {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 ( -
- Placeholder -
-

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. -

+
+
+ Placeholder +
+

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 +

+ + + + + ); }