mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
22 lines
615 B
TypeScript
22 lines
615 B
TypeScript
import {PageParams} from "@/types/next";
|
|
import {Page, PageContent, PageHeader, PageTitle} from "@/features/layout/page";
|
|
import {AgentForm} from "@/components/wrappers/dashboard/agent/agent-form/agent-form";
|
|
import {Metadata} from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Create Agent",
|
|
};
|
|
|
|
export default async function RoutePage(props: PageParams<{}>) {
|
|
return (
|
|
<Page>
|
|
<PageHeader>
|
|
<PageTitle>Create new agent</PageTitle>
|
|
</PageHeader>
|
|
<PageContent>
|
|
<AgentForm/>
|
|
</PageContent>
|
|
</Page>
|
|
);
|
|
}
|