import {PageParams} from "@/types/next"; import {AgentCard} from "@/components/wrappers/dashboard/agent/AgentCard/AgentCard"; import {CardsWithPagination} from "@/components/wrappers/common/cards-with-pagination"; import {Button} from "@/components/ui/button"; import Link from 'next/link' import {Page, PageActions, PageContent, PageHeader, PageTitle} from "@/features/layout/page"; import {prisma} from "@/prisma"; export default async function RoutePage(props: PageParams<{}>) { const agents = await prisma.agent.findMany() return ( Agents {agents.length > 0 && ( )} {agents.length > 0 ? : Create new Agent } ) }