14 | Genius is thinking... 15 |
16 |17 | {label} 18 |
19 |29 | {description} 30 |
31 |21 | Chat with the smartest AI - Experience the power of AI 22 |
23 |39 | {apiLimitCount} / {MAX_FREE_COUNTS} Free Generations 40 |
41 | 42 |33 | 34 | {item.name} 35 | 36 |
37 |{item.title}
38 |161 | {body} 162 |
163 | ) 164 | }) 165 | FormMessage.displayName = "FormMessage" 166 | 167 | export { 168 | useFormField, 169 | Form, 170 | FormItem, 171 | FormLabel, 172 | FormControl, 173 | FormDescription, 174 | FormMessage, 175 | FormField, 176 | } 177 | -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- 1 | "use client" 2 | 3 | import * as React from "react" 4 | import * as SheetPrimitive from "@radix-ui/react-dialog" 5 | import { cva, type VariantProps } from "class-variance-authority" 6 | import { X } from "lucide-react" 7 | 8 | import { cn } from "@/lib/utils" 9 | 10 | const Sheet = SheetPrimitive.Root 11 | 12 | const SheetTrigger = SheetPrimitive.Trigger 13 | 14 | const SheetClose = SheetPrimitive.Close 15 | 16 | const SheetPortal = ({ 17 | className, 18 | ...props 19 | }: SheetPrimitive.DialogPortalProps) => ( 20 |129 | {message.content} 130 |
131 |
140 | )
141 | }} className="text-sm overflow-hidden leading-7">
142 | {message.content || ""}
143 |