import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Github, ArrowRight, Download } from "lucide-react"; import { CursorIcon, OpenAIIcon } from "@/components/icons/custom-icons"; import Link from "next/link"; export default async function ConnectPage({ params, }: { params: Promise<{ workspace: string; projectId: string }>; }) { const { workspace, projectId } = await params; return (
{/* Header */}

Connect Your Sources

Install the Cursor extension and connect your development sources. Our AI will analyze all of the information and automatically create your project for you.

{/* Connection Cards */}
{/* Cursor Extension */}
Cursor Extension Install our extension to track your development sessions

The extension will help us:

  • Track your coding sessions and AI interactions
  • Monitor costs and token usage
  • Generate automatic documentation
  • Sync your conversations with Vib'n
{/* GitHub Connection */}
GitHub Repository Connect your code repository for analysis

We'll need access to:

  • Read your repository code and structure
  • Access to repository metadata
  • View commit history
{/* ChatGPT Connection - Optional */}
ChatGPT Project (MCP) Optional
Connect your ChatGPT conversations and docs

Install the Model Context Protocol to:

  • Access your ChatGPT project conversations
  • Read product documentation and notes
  • Sync your product vision and requirements
{/* Continue Button */}
); }