import React from "react" import { Box, Icon, Text, Stack, Link, chakra } from "@chakra-ui/react" import { IoLogoTwitter, IoLogoLinkedin } from "react-icons/io" import { MdEmail } from "react-icons/md" import { DiGithubBadge } from "react-icons/di" type FooterLinkProps = { icon?: React.ElementType href?: string label?: string } const FooterLink: React.FC = ({ icon, href, label }) => ( ) const links = [ { icon: DiGithubBadge, label: "GitHub", href: "https://github.com/imdotdev/imdev", }, { icon: MdEmail, label: "Email", href: "mailto:cto@188.com", }, ] export const Footer = () => ( Proudly made in 🇨🇳 by im.dev {links.map((link) => ( ))} ) export default Footer