settings-commands.tsx 523 B

123456789101112131415
  1. import { Component } from "solid-js"
  2. import { useLanguage } from "@/context/language"
  3. export const SettingsCommands: Component = () => {
  4. const language = useLanguage()
  5. return (
  6. <div class="flex flex-col h-full overflow-y-auto">
  7. <div class="flex flex-col gap-6 p-6 max-w-[600px]">
  8. <h2 class="text-16-medium text-text-strong">{language.t("settings.commands.title")}</h2>
  9. <p class="text-14-regular text-text-weak">{language.t("settings.commands.description")}</p>
  10. </div>
  11. </div>
  12. )
  13. }