Initial commit from agent-native create

This commit is contained in:
agent-native
2026-07-29 11:50:08 +00:00
commit 138d195e4c
122 changed files with 7355 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { useT } from "@agent-native/core/client/i18n";
import { ObservabilityDashboard } from "@agent-native/core/client/observability";
import { useSetPageTitle } from "@agent-native/toolkit/app-shell";
import enUS from "@/i18n/en-US";
export function meta() {
return [{ title: enUS.pages.observabilityPageTitle }];
}
export default function ObservabilityPage() {
const t = useT();
useSetPageTitle(t("pages.observabilityPageTitle"));
return (
<div className="p-6">
<ObservabilityDashboard />
</div>
);
}