'use client'; import { Box, VStack, Text, Icon, Link, useColorMode } from '@chakra-ui/react'; import { LuGithub } from 'react-icons/lu'; export function GithubCard() { const { colorMode } = useColorMode(); return ( Feature Request Would you like to see something that is still missing? Request the feature by opening an issue on our GitHub! ); }