import { Heading, Text } from '@chakra-ui/react'; import React from 'react'; import { useEffect } from 'react'; import Card from './Card'; const About = () => { // scroll top useEffect(() => window.scrollTo(0, 0), []); return ( About DEV DEV is a community of software developers getting together to help one another out. The software industry relies on collaboration and networked learning. We provide a place for that to happen. We believe in transparency and adding value to the ecosystem. We hope you enjoy poking around and participating! Happy coding 💻❤️ ); }; export default About;