From d27b793cd4cf0e5316da238adba4e65803535559 Mon Sep 17 00:00:00 2001 From: Vishesh 'ironeagle' Bangotra Date: Sat, 11 Oct 2025 22:19:18 +0530 Subject: [PATCH] scroll in ServiceList --- app/components/ServiceList.tsx | 48 ++++++++++++++++++++-------------- 1 file changed, 28 insertions(+), 20 deletions(-) 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} + + + ))} + + ); };