forked from LF-Decentralized-Trust-labs/gitmesh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstanceSettings.tsx
More file actions
29 lines (26 loc) · 874 Bytes
/
Copy pathInstanceSettings.tsx
File metadata and controls
29 lines (26 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { useEffect } from "react";
import { Server } from "lucide-react";
import { EmptyState } from "../../components/EmptyState";
import { PageHeader } from "../../components/PageHeader";
import { useBreadcrumbs } from "../../context/BreadcrumbContext";
export function InstanceSettings() {
const { setBreadcrumbs } = useBreadcrumbs();
useEffect(() => {
setBreadcrumbs([{ label: "Instance Settings" }]);
}, [setBreadcrumbs]);
return (
<div className="space-y-8">
<PageHeader
eyebrow="System"
title="Instance"
description="Settings that span the entire installation."
/>
<EmptyState
icon={Server}
eyebrow="Coming soon"
message="Instance-wide settings."
description="Cross-project deployment configuration, including auth, telemetry, and feature gates."
/>
</div>
);
}