diff --git a/PITCH_PLATFORM_OVERVIEW.md b/PITCH_PLATFORM_OVERVIEW.md
new file mode 100644
index 0000000..8dee7c7
--- /dev/null
+++ b/PITCH_PLATFORM_OVERVIEW.md
@@ -0,0 +1,102 @@
+# Pitch Platform Overview
+
+## π― Platform Purpose
+
+The Pitch Platform is an AI-powered sales training and assessment tool where:
+- **Sellers** practice pitching products/services to companies
+- **Buyers** (company representatives) evaluate seller performance
+- **AI Assistant** provides real-time coaching and guidance during pitches
+
+## π± Key Pages
+
+### 1. Companies List (`/companies`)
+- Browse all available companies to pitch to
+- See company size, industry, and job openings
+- Filter by status (active, pending, contacted)
+- Request new companies to be added
+
+### 2. Company Details & Pitch Interface (`/company/[id]`)
+**Left Side: AI-Powered Chat**
+- Real-time pitch assistant powered by CopilotKit
+- Helps sellers craft effective pitches
+- Provides objection handling suggestions
+- Guides through the sales process
+
+**Right Side: Company Intelligence**
+- Company overview and description
+- Current needs and pain points
+- Existing tech stack/solutions
+- Key decision makers with focus areas
+- Job openings and growth indicators
+
+### 3. Seller's Pitch Score (`/pitch-score`)
+- Comprehensive assessment tool for buyers
+- Six evaluation criteria:
+ - Product Knowledge (20% weight)
+ - Communication (15% weight)
+ - Needs Analysis (20% weight)
+ - Solution Fit (20% weight)
+ - Objection Handling (15% weight)
+ - Professionalism (10% weight)
+- Overall score calculation
+- Recommendation system
+- Export assessment reports
+
+## π User Flow
+
+### For Sellers:
+1. Browse companies on `/companies`
+2. Select a target company
+3. Enter pitch interface at `/company/[id]`
+4. Use AI assistant to prepare and deliver pitch
+5. Receive feedback via pitch scores
+
+### For Buyers:
+1. Access company pitch sessions
+2. Observe seller presentations
+3. Navigate to `/pitch-score` after pitch
+4. Complete detailed assessment
+5. Submit evaluation for seller improvement
+
+## π€ AI Integration
+
+The platform leverages CopilotKit throughout:
+- **Company Finder Assistant**: Helps sellers identify ideal prospects
+- **Pitch Coach**: Real-time guidance during presentations
+- **Assessment Helper**: Suggests constructive feedback based on scores
+
+## π οΈ Technical Stack
+
+- **Frontend**: Next.js 15 with App Router
+- **UI**: Tailwind CSS + shadcn/ui components
+- **AI**: CopilotKit with LlamaIndex backend
+- **State**: React hooks with CopilotKit's useCoAgent
+- **Navigation**: File-based routing with dynamic segments
+
+## π Data Model
+
+### Company
+- Basic info (name, industry, size)
+- Needs and challenges
+- Current solutions
+- Decision makers
+
+### Pitch Session
+- Seller information
+- Company target
+- Chat transcript
+- Duration and engagement metrics
+
+### Assessment
+- Scored criteria
+- Overall recommendation
+- Detailed feedback
+- Historical comparisons
+
+## π Next Steps
+
+1. **Authentication**: Add seller/buyer login system
+2. **Database**: Connect to real company data
+3. **Analytics**: Track pitch success rates
+4. **Training Mode**: Practice pitches with AI buyers
+5. **Leaderboards**: Gamify seller performance
diff --git a/README.md b/README.md
index 69e62a8..8322571 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,15 @@
-# Fullstack Agents Hackathon Starter
+# Pitch Platform - AI-Powered Sales Training
-Welcome to the Fullstack Agents hackathon! This starter gives you a complete AI-powered canvas application with real-world integrations. Utilizing [LlamaIndex](https://developers.llamaindex.ai), [Composio](https://docs.composio.dev), and [CopilotKit](https://docs.copilotkit.ai).
+An intelligent platform where sellers practice pitching to companies with real-time AI coaching and performance assessment. Built with [LlamaIndex](https://developers.llamaindex.ai), [Composio](https://docs.composio.dev), and [CopilotKit](https://docs.copilotkit.ai).
-## About this starter
-This is a starter template for building AI-powered canvas applications using LlamaIndex, CopilotKit, and Composio. It provides a modern Next.js application with an integrated LlamaIndex agent that manages a visual canvas of interactive cards with real-time AI synchronization and external tool integrations (Google Sheets, for this example) through Composio.
+## About this Platform
+This is an AI-powered pitch training platform that helps sellers improve their sales skills through:
+- **Interactive Pitch Sessions**: Practice pitching to real companies with AI guidance
+- **Real-time Coaching**: Get instant feedback and suggestions during your pitch
+- **Performance Assessment**: Buyers evaluate sellers using a comprehensive scoring system
+- **Company Intelligence**: Access detailed information about target companies
-This is an example application that we built to help you get started quickly. Everything you see can be customized, replaced, augmented or built upon.
+Built on the CopilotKit canvas starter template, this platform demonstrates how AI can transform sales training and assessment.
https://github.com/user-attachments/assets/2a4ec718-b83b-4968-9cbe-7c1fe082e958
diff --git a/ROUTING_GUIDE.md b/ROUTING_GUIDE.md
new file mode 100644
index 0000000..931fe6c
--- /dev/null
+++ b/ROUTING_GUIDE.md
@@ -0,0 +1,316 @@
+# Routing Guide for Pitch Platform
+
+## Overview
+
+This is an AI-powered pitch platform where sellers practice and deliver pitches to companies (buyers) through an interactive chat interface. The platform uses **Next.js 15 with App Router** and integrates CopilotKit for AI assistance throughout the pitch process.
+
+## File-Based Routing
+
+### Basic Routes
+
+Create routes by adding `page.tsx` files in the `src/app/` directory:
+
+```
+src/app/
+βββ page.tsx β / (redirects to /companies)
+βββ companies/
+β βββ page.tsx β /companies (list of companies)
+βββ company/
+β βββ [id]/
+β βββ page.tsx β /company/[id] (pitch interface)
+βββ pitch-score/
+ βββ page.tsx β /pitch-score (assessment tool)
+```
+
+### Dynamic Routes
+
+For dynamic segments, use square brackets:
+- `[id]` - Single dynamic segment: `/projects/123`
+- `[...slug]` - Catch-all segments: `/blog/2024/01/post-title`
+- `[[...slug]]` - Optional catch-all: `/docs` or `/docs/guide/routing`
+
+## Creating New Pages
+
+### 1. Basic Page Template
+
+```tsx
+"use client";
+
+import { useCopilotAction } from "@copilotkit/react-core";
+import { CopilotPopup } from "@copilotkit/react-ui";
+
+export default function YourPage() {
+ // Add CopilotKit actions
+ useCopilotAction({
+ name: "your_action",
+ description: "Description of what this action does",
+ parameters: [
+ {
+ name: "param",
+ type: "string",
+ description: "Parameter description",
+ required: true,
+ },
+ ],
+ handler: async ({ param }) => {
+ // Your logic here
+ return `Action completed with ${param}`;
+ },
+ });
+
+ return (
+