// "use client"; // import { // Dialog, // DialogContent, // DialogDescription, // DialogHeader, // DialogTitle, // DialogTrigger, // } from "@/components/ui/dialog"; // import { // Form, // FormControl, // FormDescription, // FormField, // FormItem, // FormLabel, // FormMessage, // } from "@/components/ui/form"; // import { Button } from "@/components/ui/button"; // import { Input } from "@/components/ui/input"; // import { Label } from "@/components/ui/label"; // import * as z from "zod"; // import { useForm } from "react-hook-form"; // import { zodResolver } from "@hookform/resolvers/zod"; // const formSchema = z.object({ // description: z.string().min(2, { // message: "Task description must be at least 2 characters.", // }), // }); // export default function GenerateTasks({ stack }: { stack: string[] }) { // const form = useForm>({ // resolver: zodResolver(formSchema), // defaultValues: { // description: "", // }, // }); // return ( //
//

Generate Tasks

//
// // ( // // Description // // // // // This is your task description. // // // // )} // /> // // // //
// ); // }