diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 375b15a..594b860 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,9 +4,8 @@
-
+
-
@@ -258,31 +257,7 @@
-
-
-
-
- 1719360545177
-
-
-
- 1719360545177
-
-
-
- 1719363656541
-
-
-
- 1719363656541
-
-
-
- 1719384439535
-
-
-
- 1719384439535
+
@@ -652,7 +627,31 @@
1740464250449
-
+
+
+ 1740464642001
+
+
+
+ 1740464642001
+
+
+
+ 1740468159111
+
+
+
+ 1740468159111
+
+
+
+ 1740488522618
+
+
+
+ 1740488522618
+
+
@@ -684,9 +683,6 @@
-
-
-
@@ -709,7 +705,10 @@
-
+
+
+
+
diff --git a/src/components/ToolHeader.tsx b/src/components/ToolHeader.tsx
index cbabf92..585a551 100644
--- a/src/components/ToolHeader.tsx
+++ b/src/components/ToolHeader.tsx
@@ -1,4 +1,4 @@
-import { Box, Button } from '@mui/material';
+import { Box, Button, styled, useTheme } from '@mui/material';
import Typography from '@mui/material/Typography';
import ToolBreadcrumb from './ToolBreadcrumb';
import { capitalizeFirstLetter } from '../utils/string';
@@ -6,6 +6,14 @@ import Grid from '@mui/material/Grid';
import { Icon, IconifyIcon } from '@iconify/react';
import { categoriesColors } from '../config/uiConfig';
+const StyledButton = styled(Button)(({ theme }) => ({
+ backgroundColor: 'white',
+ '&:hover': {
+ backgroundColor: theme.palette.primary.main,
+ color: 'white'
+ }
+}));
+
interface ToolHeaderProps {
title: string;
description: string;
@@ -14,37 +22,29 @@ interface ToolHeaderProps {
}
function ToolLinks() {
+ const theme = useTheme();
+
return (
-
+
-
+
-
+
);