import { Heading, Link, Text, useColorModeValue } from '@chakra-ui/react';
import React, { useEffect } from 'react';
import Card from './Card';
const Socials = ({ socialName, address, href, onClick }) => {
return (
{socialName}:{' '}
{address}
);
};
const Contact = () => {
// scroll top
useEffect(() => window.scrollTo(0, 0), []);
return (
Contacts
DEV Community 👩💻👨💻 would love to hear from you!
window.open(`mailto:zwelhtetyandev@gamil.com`)}
/>
);
};
export default Contact;