import { Box, Grid, GridItem, Link, Stack, Text } from '@chakra-ui/react'; import { FC } from 'react'; import NextLink from 'next/link'; import { CONTRIBUTING_PAGE, DOCS_PAGE, FAQ_PAGE } from '../../../constants'; export const QuickLinks: FC = () => { return ( Quick Links {/* get started */} Don't know where to start? We can help. Get started {/* faq */} Have doubts? Check the FAQ section in the documentation. Go to the FAQ {/* how to contribute */} Want to know how to contribute? Get more information in the documentation. How to contribute ); };