11 lines
316 B
TypeScript
11 lines
316 B
TypeScript
import { DashboardPlaceholderPage } from "@/components/dashboard-placeholder-page";
|
|
|
|
export default function SettingsPage() {
|
|
return (
|
|
<DashboardPlaceholderPage
|
|
description="Provider-Status, Secrets-Hinweise und Workspace-Einstellungen folgen mit den Integrationen."
|
|
title="Settings"
|
|
/>
|
|
);
|
|
}
|