diff --git a/src/app/our-products/page.tsx b/src/app/our-products/page.tsx index 50edc315..a78efbb9 100644 --- a/src/app/our-products/page.tsx +++ b/src/app/our-products/page.tsx @@ -1,4 +1,5 @@ import { + Button, Card, CardBody, CardFooter, @@ -8,6 +9,8 @@ import { import Image from 'next/image'; import Link from 'next/link'; import { basePath } from '../utils/constants'; +import styles from './../styles/OurProducts.module.scss'; +import classNames from 'classnames'; export default function OurProducts() { return ( @@ -64,7 +67,7 @@ function StandaloneProducts() {

- + Learn more about eCR Viewer @@ -93,9 +96,9 @@ function StandaloneProducts() {

- + - + - + diff --git a/src/app/styles/OurProducts.module.scss b/src/app/styles/OurProducts.module.scss new file mode 100644 index 00000000..d7bab755 --- /dev/null +++ b/src/app/styles/OurProducts.module.scss @@ -0,0 +1,3 @@ +.btn { + background-color: #224a58; +} \ No newline at end of file