import { useColorMode, Flex, VStack, Heading, Spacer, Link, Text, Alert, HStack, Box, Stack, Center, } from "@chakra-ui/react"; import { ExternalLinkIcon } from "@chakra-ui/icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { IconProp } from "@fortawesome/fontawesome-svg-core"; import { faTwitter, faDiscord } from "@fortawesome/free-brands-svg-icons"; const Social = ({ icon, link }: { icon: IconProp; link: string }) => { return ( ); }; function Footer() { const { colorMode } = useColorMode(); const underlineColor = { light: "gray.500", dark: "gray.400" }; return ( Found the project helpful? {process.env.REACT_APP_GITCOIN_GRANTS_ACTIVE === "true" ? ( <> Support it on Gitcoin Grants ) : ( <> Support at apoorv.eth )} Built by:{" "} @apoorvlathey {" "}
); } export default Footer;