import React from "react"; import { SVGCardProps } from "@/interfaces/components"; import { Box, Center, Image, Text, useColorModeValue, useDisclosure, } from "@chakra-ui/react"; import Tap from "@/animations/tap"; import CustomLink from "@/common/link"; import { Smiley } from "phosphor-react"; const SVGCard = (props: SVGCardProps) => { const bg = useColorModeValue("bg.light", "bg.dark"); const color = useColorModeValue("rgb(0,0,0, .1)", "rgb(255,255,255, .1)"); return ( <>
{props.title}
{props.title}
); }; export default SVGCard;