import React from 'react';
import { footerLogo } from '../assets/icons';
import { Image, Text, useColorModeValue, VStack } from '@chakra-ui/react';
import { useNavigate } from 'react-router-dom';
const Footer = () => {
const navigate = useNavigate();
const handleClickLink = () => {
navigate('/');
};
const Links = ({ children, onClick }) => {
return (
{children}
);
};
return (
DEV Community 👩💻👨💻 — A
constructive and inclusive social network for software developers.
With you every step of your journey.
The open source software
that powers DEV and other
inclusive communities.
Made with love by{' '}
Zwel
. DEV Community 👩💻👨💻 © 2016 - 2022.
);
};
export default Footer;