diff --git a/src/components/svgCard.tsx b/src/components/svgCard.tsx index c948301..2052de7 100644 --- a/src/components/svgCard.tsx +++ b/src/components/svgCard.tsx @@ -1,35 +1,44 @@ import React from "react"; import { SVGCardProps } from "@/interfaces/components"; -import { Box, Center, Image, Text, useColorModeValue } from "@chakra-ui/react"; +import { + Box, + Center, + Image, + Text, + useColorModeValue, + useDisclosure, +} from "@chakra-ui/react"; import Tap from "@/animations/tap"; import CustomLink from "@/common/link"; const SVGCard = (props: SVGCardProps) => { const bg = useColorModeValue("bg.light", "bg.dark"); return ( - - - -
- {props.title} -
- - {props.title} - -
-
-
+ <> + + + +
+ {props.title} +
+ + {props.title} + +
+
+
+ ); };