web-client/src/app/(protected)/settings/page.tsx
Markov f5e4aa03fc
All checks were successful
Deploy Web Client / deploy (push) Successful in 36s
feat: settings page with agents section, gear icon in sidebar
2026-02-23 11:22:29 +01:00

11 lines
324 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use client";
export default function SettingsPage() {
return (
<div className="p-6">
<h1 className="text-2xl font-bold mb-6"> Общие настройки</h1>
<div className="text-sm text-[var(--muted)]">Скоро здесь будут настройки проекта.</div>
</div>
);
}