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