refactor(agents): reorganize into actions/components/schemas/hooks

This commit is contained in:
Théo LAGACHE
2026-06-23 16:06:07 +02:00
parent 0dfbe39ccd
commit b9d9f42ec7
45 changed files with 361 additions and 307 deletions
@@ -1,5 +1,5 @@
import {PageParams} from "@/types/next";
import {AgentCard} from "@/features/agents/agent-card";
import {AgentCard} from "@/features/agents/components/agent-card";
import {CardsWithPagination} from "@/components/common/cards-with-pagination";
import {Page, PageActions, PageContent, PageHeader, PageTitle} from "@/features/layout/page";
import {notFound} from "next/navigation";
@@ -7,7 +7,7 @@ import {db} from "@/db";
import * as drizzleDb from "@/db";
import {and, desc, eq, isNull, not} from "drizzle-orm";
import {Metadata} from "next";
import {AgentDialog} from "@/features/agents/agent-dialog";
import {AgentDialog} from "@/features/agents/components/agent-dialog";
export const metadata: Metadata = {
title: "Agents",