import { Container, Heading, Stack } from "@chakra-ui/react" import { useTheme } from "next-themes" import { useTranslation } from "react-i18next" import { Radio, RadioGroup } from "@/components/ui/radio" const Appearance = () => { const { theme, setTheme } = useTheme() const { t } = useTranslation() return ( <> {t("user.appearance")} setTheme(e.value)} value={theme} colorPalette="teal" > {t("theme.system")} {t("theme.light")} {t("theme.dark")} ) } export default Appearance