'use client'; import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; import { Textarea } from '@/components/ui/textarea'; interface QRInputProps { value: string; onChange: (value: string) => void; } const MAX_LENGTH = 2048; export function QRInput({ value, onChange }: QRInputProps) { return ( Text