summaryrefslogtreecommitdiffhomepage
path: root/packages/app/src/components/settings-agents.tsx
blob: 74a942f7770d4932eaf500a8c5f8e1a903469022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Component } from "solid-js"
import { useLanguage } from "@/context/language"

export const SettingsAgents: Component = () => {
  // TODO: Replace this placeholder with full agents settings controls.
  const language = useLanguage()

  return (
    <div class="flex flex-col h-full overflow-y-auto">
      <div class="flex flex-col gap-6 p-6 max-w-[600px]">
        <h2 class="text-16-medium text-text-strong">{language.t("settings.agents.title")}</h2>
        <p class="text-14-regular text-text-weak">{language.t("settings.agents.description")}</p>
      </div>
    </div>
  )
}