Initial commit from agent-native create

This commit is contained in:
agent-native
2026-07-25 17:10:38 +00:00
commit ffea2aeff7
120 changed files with 6804 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>
);
}