diff --git a/app/components/ServiceList.tsx b/app/components/ServiceList.tsx index 6a6fa4d..75a0397 100644 --- a/app/components/ServiceList.tsx +++ b/app/components/ServiceList.tsx @@ -1,4 +1,5 @@ import React from 'react'; +import Box from '@mui/material/Box'; import {Grid, Paper, Link, Typography} from '@mui/material'; interface ServiceList { @@ -14,27 +15,34 @@ interface ServiceListProps { const ServiceList: React.FC = ({serviceList}) => { return ( - - {serviceList.map((s) => ( - - + + {serviceList.map((s) => ( + - {s.name} - - - {s.desc} - - - ))} - + + {s.name} + + + {s.desc} + + + ))} + + ); };