import { PageHeader } from "@/components/common/PageHeader";
import { Card } from "@/components/ui/basic";
import { ThemeSwitcher } from "@/components/common/ThemeSwitcher";
export default function Settings() {
  return (
    <>
      <PageHeader
        title="Settings"
        description="Preferences and future extension points for PTZ, RBAC, alerts, WebSockets, and push notifications."
      />
      <Card>
        <h2 className="mb-4 text-xl">Appearance</h2>
        <ThemeSwitcher />
      </Card>
    </>
  );
}
