'use client'; import { Box, VStack, Text, Icon, useColorMode, Button, } from '@chakra-ui/react'; import { LuSun, LuMoon } from 'react-icons/lu'; import { useTranslation } from 'react-i18next'; export function ThemeCard() { const { colorMode, toggleColorMode } = useColorMode(); const { t } = useTranslation(); return ( {t('Theme switcher')} {t('Try switching between light and dark mode')} ); }