diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d04197b --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# Dependencies +node_modules +.pnp +.pnp.js + +# Testing +/coverage + +# Next.js +.next/ +out/ +build +dist + +# Environment Variables +.env +.env.local +.env.* +!.env.example +!.env.local.example + +# Database +*.db +*.db-journal +*.sqlite +*.sqlite3 +chat.db* + +# Debug logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* + +# IDE/Editor +.idea/ +.vscode/ +*.swp +*.swo +.DS_Store + +# Vercel +.vercel + +# TypeScript +*.tsbuildinfo +next-env.d.ts + +# Production builds +/build +/dist + +# Cache +.cache/ +node_modules diff --git a/app/agentstats/page.tsx b/app/agentstats/page.tsx new file mode 100644 index 0000000..55071d9 --- /dev/null +++ b/app/agentstats/page.tsx @@ -0,0 +1,10 @@ +import AgentStats from '@/components/AgentStats'; + +export default function AgentsPage() { + return ( +