diff --git a/src/components/sections/useCases.js b/src/components/sections/useCases.js index ef7ab29..fdfdc54 100644 --- a/src/components/sections/useCases.js +++ b/src/components/sections/useCases.js @@ -1,7 +1,7 @@ import React from "react"; -import { Typography, Box, Grid, useTheme } from "@mui/material"; +import { Typography, Box, Button, Grid, useTheme } from "@mui/material"; import { MaxWidthWrapper } from "../layout/maxWidthWrapper" - +import { Link } from '../link' export const UseCasesSection = ({ content }) => { const theme = useTheme(); @@ -10,7 +10,6 @@ export const UseCasesSection = ({ content }) => { - How is HeLx being used? @@ -38,15 +37,17 @@ export const UseCasesSection = ({ content }) => { )} {useCase.paragraph} - {/* */} + { useCase.linkText && ( + + + + + + )} ))} @@ -54,4 +55,4 @@ export const UseCasesSection = ({ content }) => { ); -}; +}; \ No newline at end of file