'use client'; import Link from 'next/link'; import { FolderKanban, Plus } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { useProjects } from '@/lib/hooks/use-projects'; export default function DashboardPage() { const { data: projects } = useProjects(); return (
Welcome to ColaFlow - Your AI-powered project management system
Active projects in your workspace
Currently in progress
{project.key}
No projects yet. Create your first project to get started.
)}