{form.title}
{form.description}
This is a read-only preview. Form submission is disabled.
import { Link, useParams } from "react-router" import { ArrowLeft, Calendar, FileText, Lock, MessageSquare, } from "lucide-react" import { dummyForms } from "@/lib/dummy-data" import { Navbar } from "@/components/shared/navbar" import { Footer } from "@/components/shared/footer" import { FormButton } from "@/components/shared/form-button" import { QuestionPreview } from "@/components/forms/question-preview" export default function FormPreviewPage() { const { id } = useParams() const form = dummyForms.find((f) => f.id === id) if (!form) { throw new Response("Form not found", { status: 404 }) } return (
{form.description}
This is a read-only preview. Form submission is disabled.