import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Badge } from "@/components/ui/badge"; import { Box, Plus } from "lucide-react"; export default async function FeaturesPage({ params, }: { params: { projectId: string }; }) { return (
{/* Page Header */}

Features

Plan and track your product features

{/* Content */}
Feature List Features with user stories and acceptance criteria

No features yet

Start planning your features with user stories and track their progress

); }