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
+11
View File
@@ -0,0 +1,11 @@
import { ExtensionViewerPage } from "@agent-native/core/client/extensions";
import { APP_TITLE } from "@/lib/app-config";
export function meta() {
return [{ title: `Extension — ${APP_TITLE}` }];
}
export default function ExtensionViewerRoute() {
return <ExtensionViewerPage />;
}