Skip to content

Commit

Permalink
update btn and link designs
Browse files Browse the repository at this point in the history
  • Loading branch information
jakewheeler committed Oct 28, 2024
1 parent 78db8af commit b5f4f3f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/app/our-products/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {
Button,
Card,
CardBody,
CardFooter,
Expand All @@ -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 (
Expand Down Expand Up @@ -64,7 +67,7 @@ function StandaloneProducts() {
</p>
</CardBody>
<CardFooter>
<Link href={'#'} className="usa-button">
<Link href="#" className={classNames('usa-button', styles.btn)}>
Learn more about eCR Viewer
</Link>
</CardFooter>
Expand Down Expand Up @@ -93,9 +96,9 @@ function StandaloneProducts() {
</p>
</CardBody>
<CardFooter>
<Link href={'#'} className="usa-button">
<Button type="button" disabled>
Learn more about Query Connector
</Link>
</Button>
</CardFooter>
</Card>
<Card
Expand All @@ -122,9 +125,9 @@ function StandaloneProducts() {
</p>
</CardBody>
<CardFooter>
<Link href={'#'} className="usa-button">
<Button type="button" disabled>
Learn more about eCR Parser
</Link>
</Button>
</CardFooter>
</Card>
<Card
Expand All @@ -151,9 +154,9 @@ function StandaloneProducts() {
</p>
</CardBody>
<CardFooter>
<Link href={'#'} className="usa-button">
<Button type="button" disabled>
Learn more about eCR Refiner
</Link>
</Button>
</CardFooter>
</Card>
</CardGroup>
Expand Down
3 changes: 3 additions & 0 deletions src/app/styles/OurProducts.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.btn {
background-color: #224a58;
}

0 comments on commit b5f4f3f

Please sign in to comment.