import { Box, Heading, Text } from '@chakra-ui/react'; import React, { useEffect } from 'react'; import Card from './Card'; const Title = ({ children }) => { return ( {children} ); }; const FAQ = () => { // scroll top useEffect(() => window.scrollTo(0, 0), []); return ( Frequently Asked Questions 🤔 Some of these are not actually asked frequently, but they're still good to know. How do I post article on dev.to? Click on "Create Post" in the top right corner of the site. Write your article, give it a title, tag it with appropriate tags, and fill out any other relevant fields. Then, once you're ready, click publish. Your post will now be published. You can also draft your post. Can I add image url instead of uploading local images in markdown? Of course, You can add image url using the syntax below. ![image description](https://example_image.png) ); }; export default FAQ;