chore: style

This commit is contained in:
Ibrahima G. Coulibaly
2025-02-25 13:47:53 +00:00
parent a1a333197b
commit f8133f025f

View File

@@ -46,6 +46,7 @@ export default function Home() {
}} }}
onClick={() => navigate('/' + tool.path)} onClick={() => navigate('/' + tool.path)}
direction={'row'} direction={'row'}
alignItems={'center'}
spacing={2} spacing={2}
padding={2} padding={2}
border={`1px solid ${theme.palette.background.default}`} border={`1px solid ${theme.palette.background.default}`}
@@ -53,11 +54,13 @@ export default function Home() {
> >
<Icon <Icon
icon={tool.icon ?? 'ph:compass-tool-thin'} icon={tool.icon ?? 'ph:compass-tool-thin'}
fontSize={'100px'} fontSize={'60px'}
color={categoriesColors[index % categoriesColors.length]} color={categoriesColors[index % categoriesColors.length]}
/> />
<Box> <Box>
<Link to={'/' + tool.path}>{tool.name}</Link> <Link style={{ fontSize: 20 }} to={'/' + tool.path}>
{tool.name}
</Link>
<Typography sx={{ mt: 2 }}> <Typography sx={{ mt: 2 }}>
{tool.shortDescription} {tool.shortDescription}
</Typography> </Typography>