diff --git a/client/src/components/Home/SectionSecond.jsx b/client/src/components/Home/SectionSecond.jsx index b7a4e66..3a844c9 100644 --- a/client/src/components/Home/SectionSecond.jsx +++ b/client/src/components/Home/SectionSecond.jsx @@ -12,13 +12,11 @@ const SectionSecond = () => { { id: 6, title: 'Sales', positions: '2 open positions', imageUrl: 'https://via.placeholder.com/300x200/FFDAB9/FFA500?text=Sales' }, { id: 7, title: 'Customer Service', positions: '3 open positions', imageUrl: 'https://via.placeholder.com/300x200/FFDAB9/FFA500?text=Customer+Service' }, { id: 8, title: 'Engineering', positions: '6 open positions', imageUrl: 'https://via.placeholder.com/300x200/FFDAB9/FFA500?text=Engineering' }, - ]; return ( - - + Search by Category @@ -28,7 +26,20 @@ const SectionSecond = () => { {categories.map(category => ( - + { sx={{ borderRadius: '50%', backgroundColor: '#FFDAB9' }} /> - + {category.title} - + {category.positions} @@ -48,8 +59,8 @@ const SectionSecond = () => { ))} - - + + ); };